From 4011944b9e59c627a5502df95a1cacac97a8fad5 Mon Sep 17 00:00:00 2001 From: Stord Bot <77021775+stord-engineering-account@users.noreply.github.com> Date: Tue, 12 Nov 2024 13:03:45 -0700 Subject: [PATCH] chore(main): release 3.4.2 --- .github/release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index b805e9a..2ace448 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.4.1" + ".": "3.4.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c90797..212b89d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [3.4.2](https://github.com/stordco/kafee/compare/v3.4.1...v3.4.2) (2024-11-12) + + +### Miscellaneous + +* A few grammar updates ([#121](https://github.com/stordco/kafee/issues/121)) ([1a01b52](https://github.com/stordco/kafee/commit/1a01b52f16cc67e1ed68ecb9741546797a59df2b)) +* Fix typo in BrodAdapter ([#118](https://github.com/stordco/kafee/issues/118)) ([8ddc754](https://github.com/stordco/kafee/commit/8ddc754e0c288e2d130855c9e6e5b73d7f48d84c)) +* Update documentation ([#114](https://github.com/stordco/kafee/issues/114)) ([7c9947d](https://github.com/stordco/kafee/commit/7c9947d716367a2a267f47a859388b22c2051fa8)) +* Update typo in producer docs ([#117](https://github.com/stordco/kafee/issues/117)) ([ebea101](https://github.com/stordco/kafee/commit/ebea1019a325e4ed8bb943b04a0e50ea1810fa12)) + ## [3.4.1](https://github.com/stordco/kafee/compare/v3.4.0...v3.4.1) (2024-10-23) diff --git a/README.md b/README.md index c224f79..363c76c 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.4.1", organization: "stord"} + {:kafee, "~> 3.4.2", organization: "stord"} ] end ``` diff --git a/mix.exs b/mix.exs index 5c858a3..bdd610e 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.4.1", + version: "3.4.2", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,