chore: release version v0.2.1

This commit is contained in:
James Harton 2023-09-08 15:53:43 +12:00
parent 55ce5dd082
commit 86d9cb0893
Signed by: james
GPG key ID: 90E82DAA13F624F4
4 changed files with 12 additions and 3 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.2.1](https://github.com/ash-project/ash_state_machine/compare/v0.2.0...v0.2.1) (2023-09-08)
### Bug Fixes:
* Allow `next_state` to to match transitions from *. (#7)
## [v0.2.0](https://github.com/ash-project/ash_state_machine/compare/v0.1.5...v0.2.0) (2023-09-08)

View file

@ -7,7 +7,7 @@ A state machine extension for `Ash.Resource`
```elixir
def deps do
[
{:ash_state_machine, "~> 0.2.0"}
{:ash_state_machine, "~> 0.2.1"}
]
end
```

View file

@ -10,7 +10,7 @@ If you haven't already, read the [Ash Getting Started Guide](https://hexdocs.pm/
def deps()
[
...
{:ash_state_machine, "~> 0.2.0"}
{:ash_state_machine, "~> 0.2.1"}
]
end
```

View file

@ -1,7 +1,7 @@
defmodule AshStateMachine.MixProject do
use Mix.Project
@version "0.2.0"
@version "0.2.1"
@description """
An Ash.Resource extension for building finite state machines