Finite state machines in rust; bendns fork to add types.
Bump version
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | rust_fsm_dsl/Cargo.toml | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 220b94b..2248ebb 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.3.0] - 2019-05-22 ### Changed * Re-organize repository to import a single crate instead of two. @@ -37,6 +39,7 @@ 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.2.0...HEAD +[Unreleased]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.2.0...0.3.0 [0.2.0]: https://github.com/eugene-babichenko/rust-fsm/compare/v0.1.0...0.2.0 [0.1.0]: https://github.com/eugene-babichenko/rust-fsm/releases/tag/v0.1.0 @@ -15,7 +15,7 @@ edition = "2018" travis-ci = { repository = "eugene-babichenko/rust-fsm" } [dependencies] -rust-fsm-dsl = { path = "./rust_fsm_dsl", version = "0.2.0" } +rust-fsm-dsl = { path = "./rust_fsm_dsl", version = "0.3.0" } [workspace] members = [".", "rust_fsm_dsl"] diff --git a/rust_fsm_dsl/Cargo.toml b/rust_fsm_dsl/Cargo.toml index 4a6fe72..cd189db 100644 --- a/rust_fsm_dsl/Cargo.toml +++ b/rust_fsm_dsl/Cargo.toml @@ -7,7 +7,7 @@ readme = "../README.md" license = "MIT" categories = ["data-structures", "rust-patterns"] keywords = ["fsm"] -version = "0.2.0" +version = "0.3.0" authors = ["Yevhenii Babichenko"] edition = "2018" |