diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 48fbed9..a5d1cf2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.1" + ".": "2.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fd95b4f..c5e8708 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [2.2.0](https://github.com/stordco/buffy/compare/v2.1.1...v2.2.0) (2024-03-13) + + +### Features + +* SIGNAL-5811 add time interval bucket feature to ThrottleAndTimed and make loop_interval optional ([#39](https://github.com/stordco/buffy/issues/39)) ([3d48d04](https://github.com/stordco/buffy/commit/3d48d04a3b25ffb8209a79c65926c1f4a8f4debe)) + + +### Miscellaneous + +* Sync files with stordco/common-config-elixir ([#27](https://github.com/stordco/buffy/issues/27)) ([d7cffde](https://github.com/stordco/buffy/commit/d7cffdeb910491418afdd21ff8fa12e96bb00c94)) +* Sync files with stordco/common-config-elixir ([#38](https://github.com/stordco/buffy/issues/38)) ([c127668](https://github.com/stordco/buffy/commit/c1276688bfe69481abd7b6559453a6653cbc99a6)) + ## [2.1.1](https://github.com/stordco/buffy/compare/v2.1.0...v2.1.1) (2023-12-18) diff --git a/README.md b/README.md index 4a33820..cfee47a 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Just add [`buffy`](https://hex.pm/packages/buffy) to your `mix.exs` file like so ```elixir def deps do [ - {:buffy, "~> 2.1.1"} + {:buffy, "~> 2.2.0"} ] end ``` diff --git a/mix.exs b/mix.exs index f0cc1f0..1793b6f 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Buffy.MixProject do app: :buffy, name: "Buffy", description: "Buffy the Process Slayer", - version: "2.1.1", + version: "2.2.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,