From 93f4cd996ded23d6fb27be03381de64f2303b415 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Fri, 28 Apr 2023 15:39:43 -0400 Subject: [PATCH] chore: release version v0.1.2 --- CHANGELOG.md | 5 +++++ README.md | 2 +- documentation/tutorials/get-started-with-state-machines.md | 2 +- mix.exs | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c52dec1..773986a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.1.2](https://github.com/ash-project/ash_state_machine/compare/v0.1.1...v0.1.2) (2023-04-28) + + + + ## [v0.1.1](https://github.com/ash-project/ash_state_machine/compare/v0.1.0...v0.1.1) (2023-04-23) diff --git a/README.md b/README.md index 25a1064..e7d9f3f 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.1.1"} + {:ash_state_machine, "~> 0.1.2"} ] end ``` diff --git a/documentation/tutorials/get-started-with-state-machines.md b/documentation/tutorials/get-started-with-state-machines.md index e776217..bc94494 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.1.1"} + {:ash_state_machine, "~> 0.1.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 9cdbea1..db2d7d3 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshStateMachine.MixProject do use Mix.Project - @version "0.1.1" + @version "0.1.2" @description """ An Ash.Resource extension for building finite state machines