From ad21a734e12ea6e1bba87b3e58cc135bc7f98033 Mon Sep 17 00:00:00 2001 From: Stord Bot <77021775+stord-engineering-account@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:38:13 -0700 Subject: [PATCH] chore(main): release 3.5.1 (#127) An automated release has been created for you. --- ## [3.5.1](https://github.com/stordco/kafee/compare/v3.5.0...v3.5.1) (2024-12-13) ### Bug Fixes * Improve Kafee exception handling ([#126](https://github.com/stordco/kafee/issues/126)) ([fa5bd44](https://github.com/stordco/kafee/commit/fa5bd443b48c48d551427485cc9ec5b671d6dbea)) * Update kafee consumer handle_failure/2 fn ([#119](https://github.com/stordco/kafee/issues/119)) ([4c12df7](https://github.com/stordco/kafee/commit/4c12df78ca8b4466879c140a0acdd04c1c4fff7f)) ### Miscellaneous * Correct documentation to include start.count metric ([#125](https://github.com/stordco/kafee/issues/125)) ([3ab284c](https://github.com/stordco/kafee/commit/3ab284cd1f55a633b4584c4cc430fe85d9f6cb8d)) * Sync files with stordco/common-config-elixir ([#128](https://github.com/stordco/kafee/issues/128)) ([3adffb8](https://github.com/stordco/kafee/commit/3adffb84415424aa8e493b3408500c9d19ec27a3)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- .github/release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 3cf104e..57700f1 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.5.0" + ".": "3.5.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aee9c0..fea3512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [3.5.1](https://github.com/stordco/kafee/compare/v3.5.0...v3.5.1) (2024-12-13) + + +### Bug Fixes + +* Improve Kafee exception handling ([#126](https://github.com/stordco/kafee/issues/126)) ([fa5bd44](https://github.com/stordco/kafee/commit/fa5bd443b48c48d551427485cc9ec5b671d6dbea)) +* Update kafee consumer handle_failure/2 fn ([#119](https://github.com/stordco/kafee/issues/119)) ([4c12df7](https://github.com/stordco/kafee/commit/4c12df78ca8b4466879c140a0acdd04c1c4fff7f)) + + +### Miscellaneous + +* Correct documentation to include start.count metric ([#125](https://github.com/stordco/kafee/issues/125)) ([3ab284c](https://github.com/stordco/kafee/commit/3ab284cd1f55a633b4584c4cc430fe85d9f6cb8d)) +* Sync files with stordco/common-config-elixir ([#128](https://github.com/stordco/kafee/issues/128)) ([3adffb8](https://github.com/stordco/kafee/commit/3adffb84415424aa8e493b3408500c9d19ec27a3)) + ## [3.5.0](https://github.com/stordco/kafee/compare/v3.4.1...v3.5.0) (2024-11-21) diff --git a/README.md b/README.md index 3a0f45c..4d3384b 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.0", organization: "stord"} + {:kafee, "~> 3.5.1", organization: "stord"} ] end ``` diff --git a/mix.exs b/mix.exs index 0caf341..5f5e7ab 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.0", + version: "3.5.1", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,