Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -29,11 +29,11 @@ authors = ["David Chen<clfhhc@gmail.com>"]

[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<ReentrantMutex<()>>::lock_arc()` returning an
Expand Down
17 changes: 17 additions & 0 deletions crates/graphrefly-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<Mutex<X>> β†’ Rc<RefCell<X>> sweep
- *(D272)* family-1 sink Arc<dyn Fn> β†’ Rc<dyn Fn> + 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
Expand Down
13 changes: 13 additions & 0 deletions crates/graphrefly-graph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<dyn Fn> β†’ Rc<dyn Fn> + 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
Expand Down
12 changes: 12 additions & 0 deletions crates/graphrefly-operators/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<Mutex<X>> β†’ Rc<RefCell<X>> sweep
- *(D272)* family-1 sink Arc<dyn Fn> β†’ Rc<dyn Fn> + 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
Expand Down
7 changes: 7 additions & 0 deletions crates/graphrefly-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions crates/graphrefly-structures/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<dyn Fn> β†’ Rc<dyn Fn> + 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
Expand Down