diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d4f6f29..d6f5405 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.0.0" + ".": "3.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 98d2f9d..db42db5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.1](https://github.com/stordco/kafee/compare/v3.0.0...v3.0.1) (2023-11-22) + + +### Bug Fixes + +* Update dialyzer types for producer module ([#74](https://github.com/stordco/kafee/issues/74)) ([f1fa928](https://github.com/stordco/kafee/commit/f1fa9288d9be4a38320793614966ea59a238541c)) + ## [3.0.0](https://github.com/stordco/kafee/compare/v2.6.2...v3.0.0) (2023-11-05) diff --git a/README.md b/README.md index bf505c5..6375d1e 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.0.0", organization: "stord"} + {:kafee, "~> 3.0.1", organization: "stord"} ] end ``` diff --git a/mix.exs b/mix.exs index 29b1426..d082af0 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.0.0", + version: "3.0.1", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,