chore: release version v0.5.0

This commit is contained in:
James Harton 2024-02-08 12:33:36 +13:00
parent 012d40e887
commit 599749d1ff
Signed by: james
GPG key ID: 90E82DAA13F624F4
3 changed files with 21 additions and 2 deletions

View file

@ -5,6 +5,25 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [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)

View file

@ -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
```

View file

@ -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