Skip to content

Commit e000046

Browse files
chore: release
1 parent 37d062e commit e000046

File tree

9 files changed

+95
-11
lines changed

9 files changed

+95
-11
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,54 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
## [0.9.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.8.1...deep_causality-v0.9.0) - 2025-07-31
11+
12+
### Added
13+
14+
- *(deep_causality)* Added Configurable Reasoning Modalities to Causal Collectins.
15+
- *(deep_causality)* Added Programmatic Verification of Model Assumptions #275
16+
- *(deep_causality)* Unified Evidence and PropagatingEffect into a Single Typ #273
17+
18+
### Other
19+
20+
- Improved test coverage; renamed for simpler name convention.
21+
- Added or improved test coverage for causable reasoning for all causable collections.
22+
- reworked evaluate_probabilistic_propagation and evaluate_mixed_propagation in causable_reasoning.rs
23+
- Working on evaluate_mixed_propagation
24+
- Removed halting variant from PropagatingEffect
25+
- Simplified causable_reasoning
26+
- Separated debug and display trait impl for Assumption type.
27+
- Finalized Programmatic Verification of Model Assumptions #275
28+
- Restored previous implementation of causable_reasoning.rs
29+
- Added empty test to Assumption vector.
30+
- Improved test coverage for Assumption.
31+
- Improved test coverage for Model.
32+
- Added tests for AggregateLogic
33+
- Improved AssumptionError and its testing.
34+
- Working on Configurable Reasoning Modalitie #274
35+
- Updated CausableReasoning trait to handle RelayTo variant to dispatch to a different causaloid.
36+
- Increased test coverage of PropagatingEffect
37+
- Lints and formats
38+
- Increased test coverage of PropagatingEffect
39+
- Increased test coverage of PropagatingEffect
40+
- Updated benchmarks to use new PropagatingEffect.
41+
- Removed unused Evidence type.
42+
- Format and lints
43+
- Derived Default of PropagatingEffect instead of custom impl.
44+
- Bump criterion from 0.6.0 to 0.7.0
45+
- Linting and formatting.
46+
- Added black_box to evaluate_single_cause to ensure no fluke can ever happen.
47+
- Updated benchmark code with minor fix to evaluate_single_cause
48+
- Improved benchmark code.
49+
# Changelog
50+
51+
All notable changes to this project will be documented in this file.
52+
53+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
54+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55+
856
## [0.8.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.7.5...deep_causality-v0.8.0) - 2025-07-08
957

1058
### Added

Cargo.lock

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

dcl_data_structures/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.9.2](https://github.com/deepcausality-rs/deep_causality/compare/dcl_data_structures-v0.9.1...dcl_data_structures-v0.9.2) - 2025-07-31
11+
12+
### Other
13+
14+
- Bump criterion from 0.6.0 to 0.7.0
15+
# Changelog
216
All notable changes to this project will be documented in this file.
317

418
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

dcl_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dcl_data_structures"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
edition = "2021"
55
rust-version = "1.80"
66
repository = "https://github.com/deepcausality/deep_causality.rs"

deep_causality/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deep_causality"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
edition = "2021"
55
rust-version = "1.80"
66
readme = "../README.md"
@@ -23,12 +23,12 @@ version = "0.9"
2323

2424
[dependencies.deep_causality_macros]
2525
path = "../deep_causality_macros"
26-
version = "0.8.0"
26+
version = "0.8.1"
2727

2828

2929
[dependencies.ultragraph]
3030
path = "../ultragraph"
31-
version = "0.8.1"
31+
version = "0.8.2"
3232

3333

3434
[dev-dependencies]

deep_causality_macros/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.1](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_macros-v0.8.0...deep_causality_macros-v0.8.1) - 2025-07-31
11+
12+
### Other
13+
14+
- Updated CausableReasoning trait to handle RelayTo variant to dispatch to a different causaloid.
15+
1016
## [0.4.11](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_macros-v0.4.10...deep_causality_macros-v0.4.11) - 2025-05-16
1117

1218
### Other

deep_causality_macros/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_macros"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
rust-version = "1.80"
66
repository = "https://github.com/deepcausality/deep_causality.rs"

ultragraph/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
## [0.8.2](https://github.com/deepcausality-rs/deep_causality/compare/ultragraph-v0.8.1...ultragraph-v0.8.2) - 2025-07-31
11+
12+
### Other
13+
14+
- Updated dependencies in UltraGraph and for Bazel.
15+
- Updated UltraGraph README.md
16+
- Improved docstring
17+
# Changelog
18+
19+
All notable changes to this project will be documented in this file.
20+
21+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
22+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
23+
824
## [0.8.1](https://github.com/marvin-hansen/deep_causality/compare/ultragraph-v0.8.0...ultragraph-v0.8.1) - 2025-07-10
925

1026
### Other

ultragraph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ultragraph"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
edition = "2021"
55
rust-version = "1.80"
66
repository = "https://github.com/deepcausality/deep_causality.rs"
@@ -16,7 +16,7 @@ exclude = ["*.bazel", "*/*.bazel", "*.bazel.*", "BUILD", "BUILD.bazel", "MODULE
1616

1717
[dependencies.deep_causality_macros]
1818
path = "../deep_causality_macros"
19-
version = "0.8.0"
19+
version = "0.8.1"
2020

2121

2222
[dev-dependencies]

0 commit comments

Comments
 (0)