Current section
20 Versions
Jump to
Current section
20 Versions
Compare versions
3
files changed
+12
additions
-6
deletions
| @@ -1,15 +1,21 @@ | |
| 1 1 | # Changelog for v0.x |
| 2 2 | |
| 3 | + ## v0.2.1 (2024-09-23) |
| 4 | + |
| 5 | + ### Bug fixes |
| 6 | + |
| 7 | + * Upgrade erlfdb to 0.2.1, allowing Livebook Desktop to discover fdbcli location in /usr/local/bin |
| 8 | + |
| 3 9 | ## v0.2.0 (2024-09-21) |
| 4 10 | |
| 5 11 | ### Bug fixes |
| 6 12 | |
| 7 13 | ### Enhancements |
| 8 14 | |
| 9 | - * Upserts: Support for Ecto options `:on_conflict` and `:conflict_target` |
| 10 | - * Pipelining: New Repo functions for async/await within a transaction. |
| 15 | + * [Upserts](Ecto.Adapters.FoundationDB.html#module-upserts): Support for Ecto options `:on_conflict` and `:conflict_target` |
| 16 | + * [Pipelining](Ecto.Adapters.FoundationDB.html#module-pipelining): New Repo functions for async/await within a transaction. |
| 11 17 | |
| 12 18 | ### New Documentation |
| 13 19 | |
| 14 | - * TESTING.md: Document to describe how to set up a Sandbox |
| 15 | - * CHANGELOG.md: This file! |
| 20 | + * [TESTING.md](testing.html): Document to describe how to set up a Sandbox |
| 21 | + * [CHANGELOG.md](changelog.html): This file! |
| @@ -2,7 +2,7 @@ | |
| 2 2 | [{<<"GitHub">>, |
| 3 3 | <<"https://github.com/foundationdb-beam/ecto_foundationdb">>}]}. |
| 4 4 | {<<"name">>,<<"ecto_foundationdb">>}. |
| 5 | - {<<"version">>,<<"0.2.0">>}. |
| 5 | + {<<"version">>,<<"0.2.1">>}. |
| 6 6 | {<<"description">>,<<"FoundationDB adapter for Ecto">>}. |
| 7 7 | {<<"elixir">>,<<"~> 1.15">>}. |
| 8 8 | {<<"app">>,<<"ecto_foundationdb">>}. |
| @@ -4,7 +4,7 @@ defmodule EctoFoundationdb.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :ecto_foundationdb, |
| 7 | - version: "0.2.0", |
| 7 | + version: "0.2.1", |
| 8 8 | description: "FoundationDB adapter for Ecto", |
| 9 9 | elixir: "~> 1.15", |
| 10 10 | start_permanent: Mix.env() == :prod, |