diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index be84abe..9d5cb18 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.5.2" + ".": "3.5.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a56edeb..3442e35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.5.3](https://github.com/stordco/kafee/compare/v3.5.2...v3.5.3) (2025-01-14) + + +### Miscellaneous + +* Add consumer lag utility for brod ([#131](https://github.com/stordco/kafee/issues/131)) ([a03991e](https://github.com/stordco/kafee/commit/a03991ec5f85f328ea01a0cf5ab882bd9263dd30)) + ## [3.5.2](https://github.com/stordco/kafee/compare/v3.5.1...v3.5.2) (2024-12-17) diff --git a/README.md b/README.md index 9b6fb0c..3743ff1 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Just add [`kafee`](https://hex.pm/packages/stord/kafee) to your `mix.exs` file l ```elixir def deps do [ - {:kafee, "~> 3.5.2", organization: "stord"} + {:kafee, "~> 3.5.3", organization: "stord"} ] end ``` diff --git a/mix.exs b/mix.exs index c8c3535..18dc414 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Kafee.MixProject do app: :kafee, name: "Kafee", description: "Let's get energized with Kafka!", - version: "3.5.2", + version: "3.5.3", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,