Skip to content
This repository was archived by the owner on Aug 27, 2026. It is now read-only.

Commit 20d83dc

Browse files
committed
chore(release): v1.0.1
Optimization performance release: 17x faster warm-state operations (buffered persist serialization, skip-reload, fsync policy), self-cleaning storage (spill TTL + byte ceiling, orphaned tmp sweep), and a criterion persist-path regression gate.
1 parent 8d7277e commit 20d83dc

9 files changed

Lines changed: 25 additions & 25 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "1.0.0"
15+
version = "1.0.1"
1616
edition = "2024"
1717
license = "MIT"
1818
repository = "https://github.com/AdityaVG13/tokenzero"

crates/tokenzero-filters/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ rust-version.workspace = true
1515
regex.workspace = true
1616
serde.workspace = true
1717
serde_json.workspace = true
18-
tokenzero-core = { path = "../tokenzero-core", version = "1.0.0" }
18+
tokenzero-core = { path = "../tokenzero-core", version = "1.0.1" }

crates/tokenzero-install/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ serde.workspace = true
1818
serde_json.workspace = true
1919
sha2.workspace = true
2020
toml.workspace = true
21-
tokenzero-core = { path = "../tokenzero-core", version = "1.0.0" }
21+
tokenzero-core = { path = "../tokenzero-core", version = "1.0.1" }
2222

2323
[dev-dependencies]
2424
tempfile.workspace = true

crates/tokenzero-mcp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ serde.workspace = true
1717
serde_json.workspace = true
1818
similar.workspace = true
1919
thiserror.workspace = true
20-
tokenzero-core = { path = "../tokenzero-core", version = "1.0.0" }
21-
tokenzero-filters = { path = "../tokenzero-filters", version = "1.0.0" }
22-
tokenzero-recovery = { path = "../tokenzero-recovery", version = "1.0.0" }
23-
tokenzero-runtime = { path = "../tokenzero-runtime", version = "1.0.0" }
20+
tokenzero-core = { path = "../tokenzero-core", version = "1.0.1" }
21+
tokenzero-filters = { path = "../tokenzero-filters", version = "1.0.1" }
22+
tokenzero-recovery = { path = "../tokenzero-recovery", version = "1.0.1" }
23+
tokenzero-runtime = { path = "../tokenzero-runtime", version = "1.0.1" }
2424

2525
[dev-dependencies]
2626
assert_cmd.workspace = true

crates/tokenzero-pulse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ serde.workspace = true
1818
serde_json.workspace = true
1919
sha2.workspace = true
2020
tempfile.workspace = true
21-
tokenzero-core = { path = "../tokenzero-core", version = "1.0.0" }
21+
tokenzero-core = { path = "../tokenzero-core", version = "1.0.1" }
2222

2323
[dev-dependencies]
2424
proptest.workspace = true

crates/tokenzero-recovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ serde.workspace = true
1818
serde_json.workspace = true
1919
sha2.workspace = true
2020
thiserror.workspace = true
21-
tokenzero-core = { path = "../tokenzero-core", version = "1.0.0" }
21+
tokenzero-core = { path = "../tokenzero-core", version = "1.0.1" }
2222

2323
[dev-dependencies]
2424
proptest.workspace = true

crates/tokenzero-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ serde.workspace = true
1616
serde_json.workspace = true
1717
thiserror.workspace = true
1818
wait-timeout.workspace = true
19-
tokenzero-core = { path = "../tokenzero-core", version = "1.0.0" }
19+
tokenzero-core = { path = "../tokenzero-core", version = "1.0.1" }
2020

2121
[dev-dependencies]
2222
proptest.workspace = true

crates/tokenzero/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ clap.workspace = true
2121
serde.workspace = true
2222
serde_json.workspace = true
2323
tempfile.workspace = true
24-
tokenzero-core = { path = "../tokenzero-core", version = "1.0.0" }
25-
tokenzero-filters = { path = "../tokenzero-filters", version = "1.0.0" }
26-
tokenzero-install = { path = "../tokenzero-install", version = "1.0.0" }
27-
tokenzero-mcp = { path = "../tokenzero-mcp", version = "1.0.0" }
28-
tokenzero-pulse = { path = "../tokenzero-pulse", version = "1.0.0" }
29-
tokenzero-recovery = { path = "../tokenzero-recovery", version = "1.0.0" }
30-
tokenzero-runtime = { path = "../tokenzero-runtime", version = "1.0.0" }
24+
tokenzero-core = { path = "../tokenzero-core", version = "1.0.1" }
25+
tokenzero-filters = { path = "../tokenzero-filters", version = "1.0.1" }
26+
tokenzero-install = { path = "../tokenzero-install", version = "1.0.1" }
27+
tokenzero-mcp = { path = "../tokenzero-mcp", version = "1.0.1" }
28+
tokenzero-pulse = { path = "../tokenzero-pulse", version = "1.0.1" }
29+
tokenzero-recovery = { path = "../tokenzero-recovery", version = "1.0.1" }
30+
tokenzero-runtime = { path = "../tokenzero-runtime", version = "1.0.1" }
3131

3232
[dev-dependencies]
3333
assert_cmd.workspace = true

0 commit comments

Comments
 (0)