Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

No changes.

## v0.3.4 (2025-02-01)
## v0.3.4 (2026-02-01)

### Enhancements

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion notebooks/kv_queue.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

```elixir
Mix.install([
{:erlfdb, "~> 0.3"}
{:erlfdb, "~> 1.0"}
])
```

Expand Down
4 changes: 2 additions & 2 deletions notebooks/tutorial-elixir.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:erlfdb, "~> 0.3"}
{:erlfdb, "~> 1.0"}
])
```

Expand Down Expand Up @@ -66,7 +66,7 @@ If this is all working, it looks like we are ready to start building a real appl
<!-- livebook:{"force_markdown":true} -->

```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"))
Expand Down