From 599749d1ff7e859387407692b11c2c9505827427 Mon Sep 17 00:00:00 2001 From: James Harton Date: Thu, 8 Feb 2024 12:33:36 +1300 Subject: [PATCH] chore: release version v0.5.0 --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a479a8d..d4c529a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.5.0](https://github.com/ash-project/reactor/compare/v0.4.1...v0.5.0) (2024-02-07) + + + + +### Features: + +* Add lifecycle hooks to Reactor (#83) + +### Bug Fixes: + +* don't deadlock when lots of async reactors are sharing a concurrency pool. (#36) + +* weird issue with aliases sometimes not being expanded in generated reactors. (#58) + +### Improvements: + +* Add ability for steps to decide at runtime whether they should be run asyncronously. (#84) + ## [v0.4.1](https://github.com/ash-project/reactor/compare/v0.4.0...v0.4.1) (2023-09-26) diff --git a/README.md b/README.md index 3958d9c..640770e 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.4.1"} + {:reactor, "~> 0.5.0"} ] end ``` diff --git a/mix.exs b/mix.exs index c3734ca..a10de4b 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Reactor.MixProject do use Mix.Project - @version "0.4.1" + @version "0.5.0" @description "An asynchronous, graph-based execution engine" def project do