chore: release version v0.8.0

This commit is contained in:
James Harton 2024-03-19 10:46:55 +13:00
parent dfc56a871c
commit 8191bf7d8b
Signed by: james
GPG key ID: 90E82DAA13F624F4
3 changed files with 17 additions and 2 deletions

View file

@ -5,6 +5,21 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.8.0](https://github.com/ash-project/reactor/compare/v0.7.0...v0.8.0) (2024-03-18)
### Breaking Changes:
* Use `Splode` for managing errors. (#97)
### Bug Fixes:
* Don't assume `UndefinedFunctionError` means the module is not a Reactor.
### Improvements:
* Add template guards.
## [v0.7.0](https://github.com/ash-project/reactor/compare/v0.6.0...v0.7.0) (2024-02-28)

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.7.0"}
{:reactor, "~> 0.8.0"}
]
end
```

View file

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