Skip to content

Commit db6fcb7

Browse files
chore: release
1 parent b1aba1e commit db6fcb7

46 files changed

Lines changed: 430 additions & 58 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.13.11](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.13.10...deep_causality-v0.13.11) - 2026-06-22
11+
12+
### Added
13+
14+
- *(examples)* add example_ml_rca
15+
16+
### Other
17+
18+
- *(deep_causality)* close coverage gaps in core crate (tests only)
19+
- raise test coverage across 8 crates.
20+
- Generated new SBOM for all crates.
21+
- *(papers)* Reorganized publication by moving each paper into the crate where it is actually implemented.
22+
1023
## [0.13.10](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.13.9...deep_causality-v0.13.10) - 2026-06-12
1124

1225
### Other

Cargo.lock

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

deep_causality/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "deep_causality"
6-
version = "0.13.10"
6+
version = "0.13.11"
77
edition = { workspace = true }
88
rust-version = { workspace = true }
99
license = { workspace = true }
@@ -43,15 +43,15 @@ os-random = ["deep_causality_uncertain/os-random"]
4343

4444
[dependencies.deep_causality_uncertain]
4545
path = "../deep_causality_uncertain"
46-
version = "0.3"
46+
version = "0.4"
4747

4848
[dependencies.deep_causality_ast]
4949
path = "../deep_causality_ast"
5050
version = "0.1"
5151

5252
[dependencies.deep_causality_core]
5353
path = "../deep_causality_core"
54-
version = "0.10"
54+
version = "0.11"
5555
default-features = true
5656

5757
[dependencies.deep_causality_data_structures]

deep_causality_algorithms/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [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-22
11+
12+
### Added
13+
14+
- *(deep_causality_algorithms)* opt-in O(du) MAP-config pruning for BRCD (near-linear path)
15+
- *(deep_causality_algorithms)* add dag_sampling uniform MEC DAG sampler
16+
- *(deep_causality_algorithms)* add dag_sampling — polynomial-time Clique-Picking AMO counter
17+
18+
### Fixed
19+
20+
- *(deep_causality_algorithms)* Fixed miri test config
21+
- *(deep_causality_algorithms)* Fixed miri test config
22+
- *(deep_causality_algorithms,deep_causality_discovery)* cache version tag, docs,
23+
- *(deep_causality_algorithms)* Removed dead code
24+
- *(deep_causality_algorithms)* remove latent panic in Clique-Picking AMO counter
25+
- *(brcd,discovery)* address QA findings (32-bit shift, DRY, Precision bound)
26+
- *(deep_causality_algorithms)* Resolved sorting order issues reported in https://github.com/deepcausality-rs/deep_causality/issues/641
27+
- *(deep_causality_algorithms)* correct verification data path after brcd-paper move
28+
29+
### Other
30+
31+
- strengthen physics quantity assertions and fix review nits
32+
- *(deep_causality_algorithms)* close remaining coverage gaps with targeted branch tests
33+
- *(deep_causality_algorithms)* memoize invalid MapPrune orientations
34+
- *(deep_causality_algorithms)* updated
35+
- *(deep_causality_algorithms)* parallelize BRCD across candidates; add BRCD eval harnesses + companion papers
36+
- *(deep_causality_algorithms)* remove experimental BRCD thesis probes from verification
37+
- *(deep_causality_algorithms)* wire BRCD to the polynomial dag_sampling counter + sampler
38+
- Merge branch 'brcd-paper'
39+
- Generated new SBOM for all crates.
40+
- *(papers)* Reorganized publication by moving each paper into the crate where it is actually implemented.
41+
- Updated README file across multiple crates to meet project standard.
42+
1043
## [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
1144

1245
### Added

deep_causality_algorithms/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deep_causality_algorithms"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -30,7 +30,7 @@ version = "0.6"
3030

3131
[dependencies.deep_causality_rand]
3232
path = "../deep_causality_rand"
33-
version = "0.1"
33+
version = "0.2"
3434

3535
# Feature-conditional thread-safety marker (`MaybeParallel`): vacuous on serial
3636
# builds, `Send + Sync` when `parallel` is forwarded below.

deep_causality_ast/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [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-22
11+
12+
### Other
13+
14+
- Generated new SBOM for all crates.
15+
- Updated README file across multiple crates to meet project standard.
16+
1017
## [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
1118

1219
### Other

deep_causality_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deep_causality_ast"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition.workspace = true
55
rust-version.workspace = true
66
license.workspace = true

deep_causality_calculus/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [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-22
11+
12+
### Other
13+
14+
- Generated new SBOM for all crates.
15+
- Add the readme file to the calculus crate.
16+
1017
## [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
1118

1219
### Other

deep_causality_calculus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deep_causality_calculus"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }

deep_causality_cfd/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ parallel = [
4949

5050
[dependencies.deep_causality_physics]
5151
path = "../deep_causality_physics"
52-
version = "0.6"
52+
version = "0.7"
5353
default-features = false
5454

5555
[dependencies.deep_causality_calculus]
@@ -58,7 +58,7 @@ version = "0.1"
5858

5959
[dependencies.deep_causality_core]
6060
path = "../deep_causality_core"
61-
version = "0.10"
61+
version = "0.11"
6262

6363
[dependencies.deep_causality_haft]
6464
path = "../deep_causality_haft"
@@ -76,7 +76,7 @@ version = "0.4"
7676
# sample cache. Gated behind `std` so the `alloc`-only build stays uncertain-free.
7777
[dependencies.deep_causality_uncertain]
7878
path = "../deep_causality_uncertain"
79-
version = "0.3"
79+
version = "0.4"
8080
optional = true
8181

8282
[dependencies.deep_causality_topology]

0 commit comments

Comments
 (0)