Skip to content

Commit 4d4e324

Browse files
chore: release master (#6)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2416648 commit 4d4e324

File tree

15 files changed

+62
-25
lines changed

15 files changed

+62
-25
lines changed

.release-please-manifest.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2-
"state-machines": "0.7.1",
3-
"state-machines-core": "0.7.0",
4-
"state-machines-macro": "0.7.1",
5-
"examples/async_patterns": "0.1.1",
6-
"examples/basic_transitions": "0.1.1",
7-
"examples/callbacks_lifecycle": "0.1.1",
8-
"examples/dynamic_dispatch_when": "0.1.1",
9-
"examples/guards_and_validation": "0.1.1",
10-
"examples/hierarchical_thinking": "0.1.1",
11-
"examples/no_std_flight": "0.0.1"
2+
"state-machines": "0.8.0",
3+
"state-machines-core": "0.8.0",
4+
"state-machines-macro": "0.8.0",
5+
"examples/async_patterns": "0.1.2",
6+
"examples/basic_transitions": "0.1.2",
7+
"examples/callbacks_lifecycle": "0.1.2",
8+
"examples/dynamic_dispatch_when": "0.1.2",
9+
"examples/guards_and_validation": "0.1.2",
10+
"examples/hierarchical_thinking": "0.1.2",
11+
"examples/no_std_flight": "0.0.2",
12+
"state-machines-cli": "0.1.1"
1213
}

examples/async_patterns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async_patterns"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
publish = false
66

examples/basic_transitions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "basic_transitions"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
publish = false
66

examples/callbacks_lifecycle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "callbacks_lifecycle"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
publish = false
66

examples/dynamic_dispatch_when/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dynamic_dispatch_when"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
publish = false
66

examples/guards_and_validation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "guards_and_validation"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
publish = false
66

examples/hierarchical_thinking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hierarchical_thinking"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2024"
55
publish = false
66

examples/no_std_flight/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "no_std_flight"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
publish = false
66

state-machines-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "state-machines-cli"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2024"
55
authors = ["Abdelkader Boudih <terminale@gmail.com>"]
66
description = "CLI tool for state-machines visualization and introspection"
@@ -15,6 +15,6 @@ name = "state-machines"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
state-machines-core = { version = "0.7.0", path = "../state-machines-core", features = ["std"] }
18+
state-machines-core = { version = "0.8.0", path = "../state-machines-core", features = ["std"] }
1919
clap = { version = "4", features = ["derive"] }
2020
serde_json = "1.0"

state-machines-core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/state-machines/state-machines-rs/compare/state-machines-core-v0.7.0...state-machines-core-v0.8.0) (2026-01-17)
4+
5+
6+
### Features
7+
8+
* add introspection and visualization support with Mermaid/JSON export ([#5](https://github.com/state-machines/state-machines-rs/issues/5)) ([2416648](https://github.com/state-machines/state-machines-rs/commit/2416648368151caf8a07955ce96606bc7bf30d73))
9+
310
## [0.7.0](https://github.com/state-machines/state-machines-rs/compare/state-machines-core-v0.6.0...state-machines-core-v0.7.0) (2025-11-15)
411

512

0 commit comments

Comments
 (0)