diff --git a/CHANGELOG.md b/CHANGELOG.md index c021c1b..812c6a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.0](https://github.com/stordco/data-streams-ex/compare/v1.1.2...v1.2.0) (2023-07-10) + + +### Features + +* allow tracking kafka produce and consume offsets ([#18](https://github.com/stordco/data-streams-ex/issues/18)) ([ebab69b](https://github.com/stordco/data-streams-ex/commit/ebab69bb896eddb23913a49098ebc3460e4ae72c)) + ## [1.1.2](https://github.com/stordco/data-streams-ex/compare/v1.1.1...v1.1.2) (2023-06-05) diff --git a/README.md b/README.md index 2a94ae1..e930c88 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Just add [`data_streams`](https://hexdocs.pm/data_streams) to your `mix.exs` fil ```elixir def deps do [ - {:data_streams, "~> 1.1.2"} + {:data_streams, "~> 1.2.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 5177126..1f54536 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Datadog.DataStreams.MixProject do app: :data_streams, name: "Data Streams Ex", description: "DataDog data streams library for Elixir", - version: "1.1.2", + version: "1.2.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,