chore: release version v0.1.5

This commit is contained in:
Zach Daniel 2023-08-04 17:48:38 -04:00
parent 7a243389b0
commit 7bf92ba8b2
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.1.5](https://github.com/ash-project/ash_state_machine/compare/v0.1.4...v0.1.5) (2023-08-04)
### Improvements:
* support :* in states
## [v0.1.4](https://github.com/ash-project/ash_state_machine/compare/v0.1.3...v0.1.4) (2023-05-03)

View file

@ -7,7 +7,7 @@ A state machine extension for `Ash.Resource`
```elixir
def deps do
[
{:ash_state_machine, "~> 0.1.4"}
{:ash_state_machine, "~> 0.1.5"}
]
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.1.4"}
{:ash_state_machine, "~> 0.1.5"}
]
end
```

View file

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