Current section

20 Versions

Jump to

Compare versions

3 files changed
+10 additions
-4 deletions
  @@ -1,5 +1,11 @@
1 1 # Changelog
2 2
3 + ## v0.6.1 (2025-12-28)
4 +
5 + ### Dependencies
6 +
7 + * `erlfdb ~> 0.3.3`
8 +
3 9 ## v0.6.0 (2025-12-27)
4 10
5 11 ### Enhancements
  @@ -2,7 +2,7 @@
2 2 [{<<"GitHub">>,
3 3 <<"https://github.com/foundationdb-beam/ecto_foundationdb">>}]}.
4 4 {<<"name">>,<<"ecto_foundationdb">>}.
5 - {<<"version">>,<<"0.6.0">>}.
5 + {<<"version">>,<<"0.6.1">>}.
6 6 {<<"description">>,<<"FoundationDB adapter for Ecto">>}.
7 7 {<<"elixir">>,<<"~> 1.15">>}.
8 8 {<<"app">>,<<"ecto_foundationdb">>}.
  @@ -11,7 +11,7 @@
11 11 [[{<<"name">>,<<"erlfdb">>},
12 12 {<<"app">>,<<"erlfdb">>},
13 13 {<<"optional">>,false},
14 - {<<"requirement">>,<<"~> 0.3">>},
14 + {<<"requirement">>,<<"~> 0.3.3">>},
15 15 {<<"repository">>,<<"hexpm">>}],
16 16 [{<<"name">>,<<"ecto">>},
17 17 {<<"app">>,<<"ecto">>},
  @@ -4,7 +4,7 @@ defmodule EctoFoundationdb.MixProject do
4 4 def project do
5 5 [
6 6 app: :ecto_foundationdb,
7 - version: "0.6.0",
7 + version: "0.6.1",
8 8 description: "FoundationDB adapter for Ecto",
9 9 elixir: "~> 1.15",
10 10 start_permanent: Mix.env() == :prod,
  @@ -73,7 +73,7 @@ defmodule EctoFoundationdb.MixProject do
73 73 # Run "mix help deps" to learn about dependencies.
74 74 defp deps do
75 75 [
76 - {:erlfdb, "~> 0.3"},
76 + {:erlfdb, "~> 0.3.3"},
77 77 {:ecto, "~> 3.13"},
78 78 {:jason, "~> 1.4"},
79 79 {:credo, "~> 1.6", only: [:dev, :test, :docs]},