diff --git a/CHANGELOG.md b/CHANGELOG.md index 674f179..ef327be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.16.76] - 2026-03-21 + +### Changed + +- Update TigerBeetle client to 0.16.76 + ## [0.16.75] - 2026-03-21 ### Changed diff --git a/README.md b/README.md index 554d75c..f30ffc6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The package can be installed by adding `tigerbeetlex` to your list of dependenci ```elixir def deps do [ - {:tigerbeetlex, "~> 0.16.75"} + {:tigerbeetlex, "~> 0.16.76"} ] end ``` diff --git a/build.zig.zon b/build.zig.zon index db49965..10c6d09 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -24,8 +24,8 @@ // internet connectivity. .dependencies = .{ .tigerbeetle = .{ - .url = "https://github.com/tigerbeetle/tigerbeetle/archive/refs/tags/0.16.75.tar.gz", - .hash = "N-V-__8AAN2chABAHq9Lnel2dArv4gsIMjayzYIRsiJrMH9v", + .url = "https://github.com/tigerbeetle/tigerbeetle/archive/refs/tags/0.16.76.tar.gz", + .hash = "N-V-__8AAAOyhAAXa48NhN1gS6lRHC12-P219j2RUnnVdLBH", }, }, .paths = .{ diff --git a/guides/change_data_capture.livemd b/guides/change_data_capture.livemd index c1c6b0c..e699553 100644 --- a/guides/change_data_capture.livemd +++ b/guides/change_data_capture.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:tigerbeetlex, "~> 0.16.75"}, + {:tigerbeetlex, "~> 0.16.76"}, {:broadway, "~> 1.2"}, {:broadway_rabbitmq, "~> 0.7"}, {:jason, "~> 1.2"} @@ -35,7 +35,7 @@ In your `mix.exs` add TigerBeetlex, Broadway and Jason as dependencies ```elixir [ - {:tigerbeetlex, "~> 0.16.75"}, + {:tigerbeetlex, "~> 0.16.76"}, {:broadway, "~> 1.2"}, {:broadway_rabbitmq, "~> 0.7"}, {:jason, "~> 1.2"} diff --git a/guides/walkthrough.livemd b/guides/walkthrough.livemd index 7ba1b12..b38b8cb 100644 --- a/guides/walkthrough.livemd +++ b/guides/walkthrough.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:tigerbeetlex, "~> 0.16.75"} + {:tigerbeetlex, "~> 0.16.76"} ]) ``` @@ -17,7 +17,7 @@ The walkthrough can also be executed in Livebook. In your `mix.exs` add TigerBeetlex as a dependency ```elixir -{:tigerbeetlex, "~> 0.16.75"} +{:tigerbeetlex, "~> 0.16.76"} ``` ## Creating a Client diff --git a/mix.exs b/mix.exs index 45f939f..a1e313c 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule TigerBeetlex.MixProject do use Mix.Project - @version "0.16.75" + @version "0.16.76" @repo_url "https://github.com/rbino/tigerbeetlex" diff --git a/src/config.zig b/src/config.zig index 6887b6b..0e99cb0 100644 --- a/src/config.zig +++ b/src/config.zig @@ -1,5 +1,5 @@ pub const vsr_options = .{ - .release = "0.16.75", + .release = "0.16.76", .release_client_min = "0.16.4", .git_commit = null, .hash_log_mode = .none,