diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 95a37e3..6110c0f 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.2.0" + ".": "3.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index aa50016..6c75974 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.3.0](https://github.com/stordco/kafee/compare/v3.2.0...v3.3.0) (2024-10-07) + + +### Features + +* Additional options to allow for batching and asynchronous batch handling for BroadwayAdapter ([#103](https://github.com/stordco/kafee/issues/103)) ([f003f0b](https://github.com/stordco/kafee/commit/f003f0bf990b60343e09df0e8fd95f21ae290560)) + ## [3.2.0](https://github.com/stordco/kafee/compare/v3.1.2...v3.2.0) (2024-10-01) diff --git a/README.md b/README.md index bf0f555..012a108 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.2.0", organization: "stord"} + {:kafee, "~> 3.3.0", organization: "stord"} ] end ``` diff --git a/mix.exs b/mix.exs index 8f4fcff..d3b10f5 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.2.0", + version: "3.3.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,