Finite state machines in rust; bendns fork to add types.
Merge pull request #14 from CosminPerRam/chore/update_aquamarine
chore(deps): update aquamarine to 0.6
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | rust-fsm/Cargo.toml | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 299be32..69a235f 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] +### Changed +* Updated `aquamarine` from `0.5` to `0.6`. ## [0.7.0] - 2024-06-01 ### Changed diff --git a/rust-fsm/Cargo.toml b/rust-fsm/Cargo.toml index 38226b5..a501c53 100644 --- a/rust-fsm/Cargo.toml +++ b/rust-fsm/Cargo.toml @@ -19,7 +19,7 @@ dsl = ["rust-fsm-dsl"] diagram = ["aquamarine", "rust-fsm-dsl/diagram"] [dependencies] -aquamarine = { version = "0.5", optional = true } +aquamarine = { version = "0.6", optional = true } rust-fsm-dsl = { path = "../rust-fsm-dsl", version = "0.7.0", optional = true } [profile.dev] |