chore: release version v0.9.0

This commit is contained in:
James Harton 2024-07-18 21:57:51 +12:00
parent e8ac9a1d90
commit 844a0e585e
Signed by: james
GPG key ID: 90E82DAA13F624F4
3 changed files with 23 additions and 2 deletions

View file

@ -5,6 +5,27 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.9.0](https://github.com/ash-project/reactor/compare/v0.8.5...v0.9.0) (2024-07-18)
### Features:
* map: Add the ability to map over elements of a collection inside a reactor. (#123)
* map: Add the ability to map over elements of a collection inside a reactor.
### Bug Fixes:
* automatically pass extra arguments from the map step to nested steps.
* spurious test failures seemingly caused by `Mimic`.
### Improvements:
* throw a more helpful error when a step returns an invalid result.
## [v0.8.5](https://github.com/ash-project/reactor/compare/v0.8.4...v0.8.5) (2024-07-10)

View file

@ -37,7 +37,7 @@ The package can be installed by adding `reactor` to your list of dependencies in
```elixir
def deps do
[
{:reactor, "~> 0.8.5"}
{:reactor, "~> 0.9.0"}
]
end
```

View file

@ -1,7 +1,7 @@
defmodule Reactor.MixProject do
use Mix.Project
@version "0.8.5"
@version "0.9.0"
@description "An asynchronous, graph-based execution engine"
def project do