Finite state machines in rust; bendns fork to add types.
-rw-r--r--README.md2
-rw-r--r--doc-example/Cargo.toml2
-rw-r--r--rust-fsm-dsl/Cargo.toml2
-rw-r--r--rust-fsm/Cargo.toml4
4 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index f826dc6..9504919 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ of state machines:
This library has the feature named `std` which is enabled by default. You
may want to import this library as
-`rust-fsm = { version = "0.6", default-features = false, features = ["dsl"] }`
+`rust-fsm = { version = "0.7", default-features = false, features = ["dsl"] }`
to use it in a `no_std` environment. This only affects error types (the `Error`
trait is only available in `std`).
diff --git a/doc-example/Cargo.toml b/doc-example/Cargo.toml
index 85693d0..bc49037 100644
--- a/doc-example/Cargo.toml
+++ b/doc-example/Cargo.toml
@@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"
[dependencies]
-rust-fsm = { path = "../rust-fsm", version = "0.6.2", features = ["diagram"] }
+rust-fsm = { path = "../rust-fsm", version = "0.7", features = ["diagram"] }
diff --git a/rust-fsm-dsl/Cargo.toml b/rust-fsm-dsl/Cargo.toml
index 6425e60..602ad5a 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.2"
+version = "0.7.0"
authors = ["Yevhenii Babichenko"]
edition = "2021"
diff --git a/rust-fsm/Cargo.toml b/rust-fsm/Cargo.toml
index de434ae..be81cce 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.2"
+version = "0.7.0"
authors = ["Yevhenii Babichenko"]
edition = "2021"
@@ -20,7 +20,7 @@ diagram = ["aquamarine", "rust-fsm-dsl/diagram"]
[dependencies]
aquamarine = { version = "*", optional = true }
-rust-fsm-dsl = { path = "../rust-fsm-dsl", version = "0.6.2", optional = true }
+rust-fsm-dsl = { path = "../rust-fsm-dsl", version = "0.7.0", optional = true }
[profile.dev]
panic = "abort"