From 5ba4de0ef2c6211bb400f7b7071911e24b7b8494 Mon Sep 17 00:00:00 2001 From: stord-engineering-account <77021775+stord-engineering-account@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:39:32 -0700 Subject: [PATCH] chore(main): release 2.1.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b725ab0..969d3db 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.1" + ".": "2.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 62b51cb..3954bcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [2.1.0](https://github.com/stordco/buffy/compare/v2.0.1...v2.1.0) (2023-12-15) + + +### Features + +* Add jitter option to throttle function ([#26](https://github.com/stordco/buffy/issues/26)) ([7991f91](https://github.com/stordco/buffy/commit/7991f91dc09e34d1478a999d771b1be3fd5a88b9)) + + +### Bug Fixes + +* Debounce should be throttle ([#30](https://github.com/stordco/buffy/issues/30)) ([c0cd187](https://github.com/stordco/buffy/commit/c0cd187af50e3fc60c47464d2cf9ecc62e26f086)) + + +### Miscellaneous + +* Sync files with stordco/common-config-elixir ([#23](https://github.com/stordco/buffy/issues/23)) ([68bdd18](https://github.com/stordco/buffy/commit/68bdd18cacd7fef8007aa59def429c5b43f3c16a)) + ## [2.0.1](https://github.com/stordco/buffy/compare/v2.0.0...v2.0.1) (2023-10-03) diff --git a/README.md b/README.md index b614b30..1272c37 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.0.1"} + {:buffy, "~> 2.1.0"} ] end ``` diff --git a/mix.exs b/mix.exs index e0e8d6b..0805665 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.0.1", + version: "2.1.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,