From a7b42b56d411933dd2f9b01c36d5d65b7ab5800a Mon Sep 17 00:00:00 2001 From: Yevhenii Babichenko Date: Sat, 11 May 2024 21:26:58 +0300 Subject: [PATCH] v0.6.2 --- CHANGELOG.md | 5 ++++- rust-fsm-dsl/Cargo.toml | 2 +- rust-fsm/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d9699f..5c59496 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog][keepachangelog], and this project adheres to [Semantic Versioning][semver]. ## [Unreleased] + +## [0.6.2] - 2024-05-11 ### Changed * Update documentation. ### Added @@ -73,7 +75,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.1...HEAD +[Unreleased]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.6.2...HEAD +[0.6.2]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.6.2...v0.6.1 [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 diff --git a/rust-fsm-dsl/Cargo.toml b/rust-fsm-dsl/Cargo.toml index 3bd1625..63468c2 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.1" +version = "0.6.2" authors = ["Yevhenii Babichenko"] edition = "2018" diff --git a/rust-fsm/Cargo.toml b/rust-fsm/Cargo.toml index cf39472..34a100d 100644 --- a/rust-fsm/Cargo.toml +++ b/rust-fsm/Cargo.toml @@ -8,7 +8,7 @@ readme = "../README.md" license = "MIT" categories = ["data-structures", "rust-patterns"] keywords = ["fsm"] -version = "0.6.1" +version = "0.6.2" 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.1", optional = true } +rust-fsm-dsl = { path = "../rust-fsm-dsl", version = "0.6.2", optional = true } [profile.dev] panic = "abort"