From f3de877fef15be87afe73401934b0e51df6fa54c Mon Sep 17 00:00:00 2001 From: stord-engineering-account <77021775+stord-engineering-account@users.noreply.github.com> Date: Tue, 3 Oct 2023 10:43:53 -0600 Subject: [PATCH] chore(main): release 2.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 895bf0e..b725ab0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0" + ".": "2.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ef600d7..62b51cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.0.1](https://github.com/stordco/buffy/compare/v2.0.0...v2.0.1) (2023-10-03) + + +### Bug Fixes + +* Update callback to match spec ([#21](https://github.com/stordco/buffy/issues/21)) ([5902653](https://github.com/stordco/buffy/commit/59026530d3daf561e209d441b3b98dd1634b2aaa)) + ## [2.0.0](https://github.com/stordco/buffy/compare/v1.2.2...v2.0.0) (2023-10-02) diff --git a/README.md b/README.md index d78c7a5..b614b30 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.0"} + {:buffy, "~> 2.0.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 9597252..e0e8d6b 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.0", + version: "2.0.1", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,