From 86d9cb0893edf7e2375a0b95243bb16f73485501 Mon Sep 17 00:00:00 2001 From: James Harton Date: Fri, 8 Sep 2023 15:53:43 +1200 Subject: [PATCH] chore: release version v0.2.1 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- .../tutorials/get-started-with-state-machines.md | 2 +- mix.exs | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 772083b..03d916d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [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) diff --git a/README.md b/README.md index 48b8a93..4440323 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/documentation/tutorials/get-started-with-state-machines.md b/documentation/tutorials/get-started-with-state-machines.md index 9c4e4d9..06ceb99 100644 --- a/documentation/tutorials/get-started-with-state-machines.md +++ b/documentation/tutorials/get-started-with-state-machines.md @@ -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 ``` diff --git a/mix.exs b/mix.exs index f4e40b9..4ac973f 100644 --- a/mix.exs +++ b/mix.exs @@ -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