diff --git a/Cargo.lock b/Cargo.lock index 385e7ab..1065f03 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -603,7 +603,7 @@ dependencies = [ [[package]] name = "graphrefly-bindings-js" -version = "0.0.5" +version = "0.0.6" dependencies = [ "ahash", "graphrefly-core", @@ -622,7 +622,7 @@ dependencies = [ [[package]] name = "graphrefly-bindings-py" -version = "0.0.5" +version = "0.0.6" dependencies = [ "graphrefly-core", "graphrefly-graph", @@ -634,7 +634,7 @@ dependencies = [ [[package]] name = "graphrefly-bindings-wasm" -version = "0.0.5" +version = "0.0.6" dependencies = [ "graphrefly-core", "graphrefly-graph", @@ -646,7 +646,7 @@ dependencies = [ [[package]] name = "graphrefly-core" -version = "0.0.5" +version = "0.0.6" dependencies = [ "ahash", "criterion", @@ -667,7 +667,7 @@ dependencies = [ [[package]] name = "graphrefly-graph" -version = "0.0.5" +version = "0.0.6" dependencies = [ "blake3", "ciborium", @@ -688,7 +688,7 @@ dependencies = [ [[package]] name = "graphrefly-operators" -version = "0.0.5" +version = "0.0.6" dependencies = [ "ahash", "graphrefly-core", @@ -703,7 +703,7 @@ dependencies = [ [[package]] name = "graphrefly-storage" -version = "0.0.5" +version = "0.0.6" dependencies = [ "graphrefly-core", "graphrefly-graph", @@ -722,7 +722,7 @@ dependencies = [ [[package]] name = "graphrefly-structures" -version = "0.0.5" +version = "0.0.6" dependencies = [ "graphrefly-core", "graphrefly-graph", diff --git a/Cargo.toml b/Cargo.toml index 7bcf415..ead0425 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ default-members = [ # for wasm. [workspace.package] -version = "0.0.5" +version = "0.0.6" 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.5" } -graphrefly-graph = { path = "crates/graphrefly-graph", version = "0.0.5" } -graphrefly-operators = { path = "crates/graphrefly-operators", version = "0.0.5" } -graphrefly-storage = { path = "crates/graphrefly-storage", version = "0.0.5" } -graphrefly-structures = { path = "crates/graphrefly-structures", version = "0.0.5" } +graphrefly-core = { path = "crates/graphrefly-core", version = "0.0.6" } +graphrefly-graph = { path = "crates/graphrefly-graph", version = "0.0.6" } +graphrefly-operators = { path = "crates/graphrefly-operators", version = "0.0.6" } +graphrefly-storage = { path = "crates/graphrefly-storage", version = "0.0.6" } +graphrefly-structures = { path = "crates/graphrefly-structures", version = "0.0.6" } # 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 94e75ec..af6106c 100644 --- a/crates/graphrefly-core/CHANGELOG.md +++ b/crates/graphrefly-core/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-core-v0.0.5...graphrefly-core-v0.0.6) - 2026-05-16 + +### Added + +- *(native)* Option C — ergonomic async @graphrefly/native public surface (D206) +- clean up M1-M3 +- clean up slice G + +### Fixed + +- fix ci +- fix batch +- *(qa)* native-auto-release is structurally loop-proof (tag-only) +- fix ci +- more porting +- clean up +- more operators +- clean up +- M4 +- H+ + ## [0.0.5](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-core-v0.0.4...graphrefly-core-v0.0.5) - 2026-05-10 ### Added diff --git a/crates/graphrefly-graph/CHANGELOG.md b/crates/graphrefly-graph/CHANGELOG.md index 0283074..154a1bb 100644 --- a/crates/graphrefly-graph/CHANGELOG.md +++ b/crates/graphrefly-graph/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-graph-v0.0.5...graphrefly-graph-v0.0.6) - 2026-05-16 + +### Added + +- clean up M1-M3 + +### Fixed + +- clean up +- more operators +- M4 + ## [0.0.2](https://github.com/graphrefly/graphrefly-rs/compare/v0.0.1...v0.0.2) - 2026-05-09 ### Fixed diff --git a/crates/graphrefly-operators/CHANGELOG.md b/crates/graphrefly-operators/CHANGELOG.md index eb5b2bc..8c2eebb 100644 --- a/crates/graphrefly-operators/CHANGELOG.md +++ b/crates/graphrefly-operators/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-operators-v0.0.5...graphrefly-operators-v0.0.6) - 2026-05-16 + +### Added + +- clean up M1-M3 +- clean up slice G + +### Fixed + +- more porting +- clean up +- clean up +- more operators +- more operators +- clean up +- H+ + ## [0.0.4](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-operators-v0.0.3...graphrefly-operators-v0.0.4) - 2026-05-10 ### Fixed diff --git a/crates/graphrefly-storage/CHANGELOG.md b/crates/graphrefly-storage/CHANGELOG.md index 931e6a7..f50f2a3 100644 --- a/crates/graphrefly-storage/CHANGELOG.md +++ b/crates/graphrefly-storage/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-storage-v0.0.5...graphrefly-storage-v0.0.6) - 2026-05-16 + +### Added + +- M4 - 1 + +### Fixed + +- more porting +- parity tests +- clean up +- more operators +- M4 + ## [0.0.3](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-storage-v0.0.2...graphrefly-storage-v0.0.3) - 2026-05-09 ### Other diff --git a/crates/graphrefly-structures/CHANGELOG.md b/crates/graphrefly-structures/CHANGELOG.md index 5be41c9..4935ea1 100644 --- a/crates/graphrefly-structures/CHANGELOG.md +++ b/crates/graphrefly-structures/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-structures-v0.0.5...graphrefly-structures-v0.0.6) - 2026-05-16 + +### Added + +- M4 - 1 + +### Fixed + +- abort and changeset +- m5 part 2 +- m4 + ## [0.0.3](https://github.com/graphrefly/graphrefly-rs/compare/graphrefly-structures-v0.0.2...graphrefly-structures-v0.0.3) - 2026-05-09 ### Other