Finite state machines in rust; bendns fork to add types.
update docs
Yevhenii Babichenko 2021-08-24
parent c48b19f · commit a66a476
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 47f88dc..fa81331 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,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.5", default-features = false, features = ["dsl"] }`
+`rust-fsm = { version = "0.6", 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/src/lib.rs b/src/lib.rs
index e4c205c..7d37656 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -31,7 +31,7 @@
//!
//! This library has the feature named `std` which is enabled by default. You
//! may want to import this library as
-//! `rust-fsm = { version = "0.5", default-features = false, features = ["dsl"] }`
+//! `rust-fsm = { version = "0.6", 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`).
//!