Skip to content
Closed
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
13 changes: 13 additions & 0 deletions 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.13.11](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.13.10...deep_causality-v0.13.11) - 2026-06-25

### Added

- *(examples)* add example_ml_rca

### Other

- *(deep_causality)* close coverage gaps in core crate (tests only)
- raise test coverage across 8 crates.
- Generated new SBOM for all crates.
- *(papers)* Reorganized publication by moving each paper into the crate where it is actually implemented.

## [0.13.10](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.13.9...deep_causality-v0.13.10) - 2026-06-12

### Other
Expand Down
44 changes: 22 additions & 22 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions deep_causality/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "deep_causality"
version = "0.13.10"
version = "0.13.11"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -43,15 +43,15 @@ os-random = ["deep_causality_uncertain/os-random"]

[dependencies.deep_causality_uncertain]
path = "../deep_causality_uncertain"
version = "0.3"
version = "0.4"

[dependencies.deep_causality_ast]
path = "../deep_causality_ast"
version = "0.1"

[dependencies.deep_causality_core]
path = "../deep_causality_core"
version = "0.10"
version = "0.11"
default-features = true

[dependencies.deep_causality_data_structures]
Expand Down
33 changes: 33 additions & 0 deletions deep_causality_algorithms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.3.0...deep_causality_algorithms-v0.4.0) - 2026-06-25

### Added

- *(deep_causality_algorithms)* opt-in O(du) MAP-config pruning for BRCD (near-linear path)
- *(deep_causality_algorithms)* add dag_sampling uniform MEC DAG sampler
- *(deep_causality_algorithms)* add dag_sampling β€” polynomial-time Clique-Picking AMO counter

### Fixed

- *(deep_causality_algorithms)* Fixed miri test config
- *(deep_causality_algorithms)* Fixed miri test config
- *(deep_causality_algorithms,deep_causality_discovery)* cache version tag, docs,
- *(deep_causality_algorithms)* Removed dead code
- *(deep_causality_algorithms)* remove latent panic in Clique-Picking AMO counter
- *(brcd,discovery)* address QA findings (32-bit shift, DRY, Precision bound)
- *(deep_causality_algorithms)* Resolved sorting order issues reported in https://github.com/deepcausality-rs/deep_causality/issues/641
- *(deep_causality_algorithms)* correct verification data path after brcd-paper move

### Other

- strengthen physics quantity assertions and fix review nits
- *(deep_causality_algorithms)* close remaining coverage gaps with targeted branch tests
- *(deep_causality_algorithms)* memoize invalid MapPrune orientations
- *(deep_causality_algorithms)* updated
- *(deep_causality_algorithms)* parallelize BRCD across candidates; add BRCD eval harnesses + companion papers
- *(deep_causality_algorithms)* remove experimental BRCD thesis probes from verification
- *(deep_causality_algorithms)* wire BRCD to the polynomial dag_sampling counter + sampler
- Merge branch 'brcd-paper'
- Generated new SBOM for all crates.
- *(papers)* Reorganized publication by moving each paper into the crate where it is actually implemented.
- Updated README file across multiple crates to meet project standard.

## [0.3.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.2.14...deep_causality_algorithms-v0.3.0) - 2026-06-09

### Added
Expand Down
4 changes: 2 additions & 2 deletions deep_causality_algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_algorithms"
version = "0.3.0"
version = "0.4.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -30,7 +30,7 @@ version = "0.6"

[dependencies.deep_causality_rand]
path = "../deep_causality_rand"
version = "0.1"
version = "0.2"

# Feature-conditional thread-safety marker (`MaybeParallel`): vacuous on serial
# builds, `Send + Sync` when `parallel` is forwarded below.
Expand Down
7 changes: 7 additions & 0 deletions deep_causality_ast/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.1.8](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_ast-v0.1.7...deep_causality_ast-v0.1.8) - 2026-06-25

### Other

- Generated new SBOM for all crates.
- Updated README file across multiple crates to meet project standard.

## [0.1.7](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_ast-v0.1.6...deep_causality_ast-v0.1.7) - 2026-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion deep_causality_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_ast"
version = "0.1.7"
version = "0.1.8"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions deep_causality_calculus/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.1.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_calculus-v0.1.1...deep_causality_calculus-v0.1.2) - 2026-06-25

### Other

- Generated new SBOM for all crates.
- Add the readme file to the calculus crate.

## [0.1.1](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_calculus-v0.1.0...deep_causality_calculus-v0.1.1) - 2026-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion deep_causality_calculus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_calculus"
version = "0.1.1"
version = "0.1.2"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions deep_causality_cfd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ parallel = [

[dependencies.deep_causality_physics]
path = "../deep_causality_physics"
version = "0.6"
version = "0.7"
default-features = false

[dependencies.deep_causality_calculus]
Expand All @@ -58,7 +58,7 @@ version = "0.1"

[dependencies.deep_causality_core]
path = "../deep_causality_core"
version = "0.10"
version = "0.11"

[dependencies.deep_causality_haft]
path = "../deep_causality_haft"
Expand All @@ -76,7 +76,7 @@ version = "0.4"
# sample cache. Gated behind `std` so the `alloc`-only build stays uncertain-free.
[dependencies.deep_causality_uncertain]
path = "../deep_causality_uncertain"
version = "0.3"
version = "0.4"
optional = true

[dependencies.deep_causality_topology]
Expand Down
15 changes: 15 additions & 0 deletions deep_causality_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_core-v0.10.0...deep_causality_core-v0.11.0) - 2026-06-25

### Added

- *(deep_causality_core)* file IO actions + CausalFlow read/write bridge

### Fixed

- fixed sone doctest warnings

### Other

- Generated new SBOM for all crates.
- Updated README file across multiple crates to meet project standard.

## [0.0.9](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_core-v0.0.8...deep_causality_core-v0.0.9) - 2026-06-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion deep_causality_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_core"
version = "0.10.0"
version = "0.11.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions deep_causality_data_structures/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.15](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.14...deep_causality_data_structures-v0.10.15) - 2026-06-25

### Other

- Generated new SBOM for all crates.
- Updated README file across multiple crates to meet project standard.

## [0.10.14](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.13...deep_causality_data_structures-v0.10.14) - 2026-06-09

### Other
Expand Down
Loading
Loading