Finite state machines in rust; bendns fork to add types.
v0.6.1
Yevhenii Babichenko 2022-12-24
parent 9b0f4b6 · commit f5b74bd
-rw-r--r--.github/workflows/publish.yml0
-rw-r--r--CHANGELOG.md7
-rw-r--r--rust-fsm-dsl/Cargo.toml2
-rw-r--r--rust-fsm/Cargo.toml6
4 files changed, 9 insertions, 6 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/.github/workflows/publish.yml
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 950baf7..e530696 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,8 +5,10 @@ The format is based on [Keep a Changelog][keepachangelog], and this project
adheres to [Semantic Versioning][semver].
## [Unreleased]
+
+## [0.6.1] - 2022-12-24
### Changed
-* Use pattern pattern matching in examples.
+* Use pattern matching in examples.
### Added
* Allow to specify `repr(C)` on generated enums.
@@ -67,7 +69,8 @@ adheres to [Semantic Versioning][semver].
[keepachangelog]: https://keepachangelog.com/en/1.0.0/
[semver]: https://semver.org/spec/v2.0.0.html
-[Unreleased]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.6.0...HEAD
+[Unreleased]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.6.1...HEAD
+[0.6.1]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.3.0...v0.4.0
diff --git a/rust-fsm-dsl/Cargo.toml b/rust-fsm-dsl/Cargo.toml
index 4803017..3bd1625 100644
--- a/rust-fsm-dsl/Cargo.toml
+++ b/rust-fsm-dsl/Cargo.toml
@@ -8,7 +8,7 @@ readme = "../README.md"
license = "MIT"
categories = ["data-structures", "rust-patterns"]
keywords = ["fsm"]
-version = "0.6.0"
+version = "0.6.1"
authors = ["Yevhenii Babichenko"]
edition = "2018"
diff --git a/rust-fsm/Cargo.toml b/rust-fsm/Cargo.toml
index 82980ba..cf39472 100644
--- a/rust-fsm/Cargo.toml
+++ b/rust-fsm/Cargo.toml
@@ -4,11 +4,11 @@ description = "A framework for building finite state machines in Rust"
repository = "https://github.com/eugene-babichenko/rust-fsm"
homepage = "https://github.com/eugene-babichenko/rust-fsm"
documentation = "https://docs.rs/rust-fsm/"
-readme = "README.md"
+readme = "../README.md"
license = "MIT"
categories = ["data-structures", "rust-patterns"]
keywords = ["fsm"]
-version = "0.6.0"
+version = "0.6.1"
authors = ["Yevhenii Babichenko"]
edition = "2018"
@@ -18,7 +18,7 @@ std = []
dsl = ["rust-fsm-dsl"]
[dependencies]
-rust-fsm-dsl = { path = "../rust-fsm-dsl", version = "0.6.0", optional = true }
+rust-fsm-dsl = { path = "../rust-fsm-dsl", version = "0.6.1", optional = true }
[profile.dev]
panic = "abort"