diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ecd536..3e76ec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.7.0](https://github.com/ash-project/reactor/compare/v0.6.0...v0.7.0) (2024-02-28) + + + + +### Features: + +* Add telemetry middleware. (#93) + +* Add a middleware which emits telemetry events about Reactor. + +### Bug Fixes: + +* incorrect function arity for `Group.after_fun` DSL. + +### Improvements: + +* don't incur compile-time dependencies on middleware. + ## [v0.6.0](https://github.com/ash-project/reactor/compare/v0.5.2...v0.6.0) (2024-02-26) ### Breaking Changes: diff --git a/README.md b/README.md index 6c96f95..5267f2e 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The package can be installed by adding `reactor` to your list of dependencies in ```elixir def deps do [ - {:reactor, "~> 0.6.0"} + {:reactor, "~> 0.7.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 1282250..14b324a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Reactor.MixProject do use Mix.Project - @version "0.6.0" + @version "0.7.0" @description "An asynchronous, graph-based execution engine" def project do