From 14fc0c07d5ca065782ed98ec0bd17b186f8b1a0c Mon Sep 17 00:00:00 2001 From: "graphrefly-write-content[bot]" <273486130+graphrefly-write-content[bot]@users.noreply.github.com> Date: Sat, 23 May 2026 06:07:45 +0000 Subject: [PATCH] chore: release v0.0.8 --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 12 ++++++------ crates/graphrefly-core/CHANGELOG.md | 17 +++++++++++++++++ crates/graphrefly-graph/CHANGELOG.md | 13 +++++++++++++ crates/graphrefly-operators/CHANGELOG.md | 12 ++++++++++++ crates/graphrefly-storage/CHANGELOG.md | 7 +++++++ crates/graphrefly-structures/CHANGELOG.md | 10 ++++++++++ 7 files changed, 73 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b130d2..f5b325d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -603,7 +603,7 @@ dependencies = [ [[package]] name = "graphrefly-bindings-js" -version = "0.0.7" +version = "0.0.8" dependencies = [ "ahash", "crossbeam-channel", @@ -623,7 +623,7 @@ dependencies = [ [[package]] name = "graphrefly-bindings-py" -version = "0.0.7" +version = "0.0.8" dependencies = [ "graphrefly-core", "graphrefly-graph", @@ -635,7 +635,7 @@ dependencies = [ [[package]] name = "graphrefly-bindings-wasm" -version = "0.0.7" +version = "0.0.8" dependencies = [ "graphrefly-core", "graphrefly-graph", @@ -647,7 +647,7 @@ dependencies = [ [[package]] name = "graphrefly-core" -version = "0.0.7" +version = "0.0.8" dependencies = [ "ahash", "criterion", @@ -669,7 +669,7 @@ dependencies = [ [[package]] name = "graphrefly-graph" -version = "0.0.7" +version = "0.0.8" dependencies = [ "blake3", "ciborium", @@ -691,7 +691,7 @@ dependencies = [ [[package]] name = "graphrefly-operators" -version = "0.0.7" +version = "0.0.8" dependencies = [ "ahash", "graphrefly-core", @@ -706,7 +706,7 @@ dependencies = [ [[package]] name = "graphrefly-storage" -version = "0.0.7" +version = "0.0.8" dependencies = [ "graphrefly-core", "graphrefly-graph", @@ -725,7 +725,7 @@ dependencies = [ [[package]] name = "graphrefly-structures" -version = "0.0.7" +version = "0.0.8" dependencies = [ "graphrefly-core", "graphrefly-graph", diff --git a/Cargo.toml b/Cargo.toml index 6f018f3..39db06f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ default-members = [ # for wasm. [workspace.package] -version = "0.0.7" +version = "0.0.8" edition = "2021" rust-version = "1.95" license = "MIT OR Apache-2.0" @@ -29,11 +29,11 @@ authors = ["David Chen"] [workspace.dependencies] # In-workspace crates (path deps; bumped together pre-1.0) -graphrefly-core = { path = "crates/graphrefly-core", version = "0.0.7" } -graphrefly-graph = { path = "crates/graphrefly-graph", version = "0.0.7" } -graphrefly-operators = { path = "crates/graphrefly-operators", version = "0.0.7" } -graphrefly-storage = { path = "crates/graphrefly-storage", version = "0.0.7" } -graphrefly-structures = { path = "crates/graphrefly-structures", version = "0.0.7" } +graphrefly-core = { path = "crates/graphrefly-core", version = "0.0.8" } +graphrefly-graph = { path = "crates/graphrefly-graph", version = "0.0.8" } +graphrefly-operators = { path = "crates/graphrefly-operators", version = "0.0.8" } +graphrefly-storage = { path = "crates/graphrefly-storage", version = "0.0.8" } +graphrefly-structures = { path = "crates/graphrefly-structures", version = "0.0.8" } # Concurrency primitives # `arc_lock` enables `Arc>::lock_arc()` returning an diff --git a/crates/graphrefly-core/CHANGELOG.md b/crates/graphrefly-core/CHANGELOG.md index baa4db4..bcf9d35 100644 --- a/crates/graphrefly-core/CHANGELOG.md +++ b/crates/graphrefly-core/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-core-v0.0.7...graphrefly-core-v0.0.8) - 2026-05-23 + +### Fixed + +- clean up +- *(/qa)* D272-D274 cleanup — F1..F10 (build-break under graph-codec + stale doc residue) + +### Other + +- *(D278)* E-i+ii+iv doc-hygiene batch (Commit 1 of 3 — 4 keeps) +- bench +- *(AMEND-D)* D262/P4 inline comment + D267 scope narrowing (audit L5-001/L6-001) +- doc-hygiene cleanup (audit L4-001/L4-002/L1-001/L8-001/L8-002/L8-003) +- *(D274)* delete vestigial union-find + defer-shim surface +- *(D273)* family-2 Cat-3 Arc> → Rc> sweep +- *(D272)* family-1 sink Arc → Rc + drop 12 clippy-allow + ## [0.0.7](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-core-v0.0.6...graphrefly-core-v0.0.7) - 2026-05-21 ### Added diff --git a/crates/graphrefly-graph/CHANGELOG.md b/crates/graphrefly-graph/CHANGELOG.md index 8a5da87..bb7fff2 100644 --- a/crates/graphrefly-graph/CHANGELOG.md +++ b/crates/graphrefly-graph/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-graph-v0.0.7...graphrefly-graph-v0.0.8) - 2026-05-23 + +### Fixed + +- snapshots +- clean up + +### Other + +- *(D278)* E-i+ii+iv doc-hygiene batch (Commit 1 of 3 — 4 keeps) +- doc-hygiene cleanup (audit L4-001/L4-002/L1-001/L8-001/L8-002/L8-003) +- *(D272)* family-1 sink Arc → Rc + drop 12 clippy-allow + ## [0.0.7](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-graph-v0.0.6...graphrefly-graph-v0.0.7) - 2026-05-21 ### Added diff --git a/crates/graphrefly-operators/CHANGELOG.md b/crates/graphrefly-operators/CHANGELOG.md index 5c83d08..1a06e3b 100644 --- a/crates/graphrefly-operators/CHANGELOG.md +++ b/crates/graphrefly-operators/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-operators-v0.0.7...graphrefly-operators-v0.0.8) - 2026-05-23 + +### Fixed + +- *(/qa)* D272-D274 cleanup — F1..F10 (build-break under graph-codec + stale doc residue) + +### Other + +- *(D274)* delete vestigial union-find + defer-shim surface +- *(D273)* family-2 Cat-3 Arc> → Rc> sweep +- *(D272)* family-1 sink Arc → Rc + drop 12 clippy-allow + ## [0.0.7](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-operators-v0.0.6...graphrefly-operators-v0.0.7) - 2026-05-21 ### Added diff --git a/crates/graphrefly-storage/CHANGELOG.md b/crates/graphrefly-storage/CHANGELOG.md index f7b2276..91845a9 100644 --- a/crates/graphrefly-storage/CHANGELOG.md +++ b/crates/graphrefly-storage/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-storage-v0.0.7...graphrefly-storage-v0.0.8) - 2026-05-23 + +### Fixed + +- clean up +- reactive structure clean up + ## [0.0.7](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-storage-v0.0.6...graphrefly-storage-v0.0.7) - 2026-05-21 ### Added diff --git a/crates/graphrefly-structures/CHANGELOG.md b/crates/graphrefly-structures/CHANGELOG.md index be2a273..517bc02 100644 --- a/crates/graphrefly-structures/CHANGELOG.md +++ b/crates/graphrefly-structures/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-structures-v0.0.7...graphrefly-structures-v0.0.8) - 2026-05-23 + +### Fixed + +- reactive structure clean up + +### Other + +- *(D272)* family-1 sink Arc → Rc + drop 12 clippy-allow + ## [0.0.7](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-structures-v0.0.6...graphrefly-structures-v0.0.7) - 2026-05-21 ### Added