Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-babichenko committed May 13, 2024
1 parent b0e518e commit b6786da
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`).

Expand Down
2 changes: 1 addition & 1 deletion doc-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion rust-fsm-dsl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions rust-fsm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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"

0 comments on commit b6786da

Please sign in to comment.