From 3ec3d2fd7269c84cf7557a5b423eceae82a9c323 Mon Sep 17 00:00:00 2001 From: Jesse Stimpson Date: Sat, 28 Feb 2026 10:54:26 -0500 Subject: [PATCH] Update docs for 1.0 --- CHANGELOG.md | 4 ++-- notebooks/kv_queue.livemd | 2 +- notebooks/tutorial-elixir.livemd | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45aa171..e49d285 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ No changes. -## v0.3.4 (2025-02-01) +## v0.3.4 (2026-02-01) ### Enhancements @@ -75,7 +75,7 @@ Thank you to the following new contributors! :) * [Livebook | KvQueue](kv_queue.html): An interactive notebook that demonstrates the creation of a durable queue in FoundationDB. -## v0.2.2 (2024-01-16) +## v0.2.2 (2025-01-16) ### Bug fixes diff --git a/notebooks/kv_queue.livemd b/notebooks/kv_queue.livemd index 5950d58..417b01f 100644 --- a/notebooks/kv_queue.livemd +++ b/notebooks/kv_queue.livemd @@ -4,7 +4,7 @@ ```elixir Mix.install([ - {:erlfdb, "~> 0.3"} + {:erlfdb, "~> 1.0"} ]) ``` diff --git a/notebooks/tutorial-elixir.livemd b/notebooks/tutorial-elixir.livemd index 3f6a629..5c2499c 100644 --- a/notebooks/tutorial-elixir.livemd +++ b/notebooks/tutorial-elixir.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:erlfdb, "~> 0.3"} + {:erlfdb, "~> 1.0"} ]) ``` @@ -66,7 +66,7 @@ If this is all working, it looks like we are ready to start building a real appl ```elixir -# In mix.exs deps, add: `{:erlfdb, "~> 0.3"}` +# In mix.exs deps, add: `{:erlfdb, "~> 1.0"}` db = :erlfdb.open() :erlfdb.set(db, "hello", "world") IO.puts("hello " <> :erlfdb.get(db, "hello"))