Skip to content

Commit 398cc58

Browse files
Merge pull request #449 from deepcausality-rs/release-plz-2026-01-11T12-30-26Z
chore: release
2 parents e26ee0d + 89b0072 commit 398cc58

33 files changed

Lines changed: 253 additions & 59 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.13.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.13.2...deep_causality-v0.13.3) - 2026-01-22
11+
12+
### Fixed
13+
14+
- fixed typo in README.md
15+
16+
### Other
17+
18+
- *(deep_causality)* Fixed multipple bugs in Context.
19+
- *(deep_causality)* Fixed multipple bugs in Causaloid.
20+
- Updated SBOM of and applied docstring fixes.
21+
1022
## [0.13.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.13.1...deep_causality-v0.13.2) - 2026-01-09
1123

1224
### Added

Cargo.lock

Lines changed: 16 additions & 16 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "deep_causality"
6-
version = "0.13.2"
6+
version = "0.13.3"
77
edition = { workspace = true }
88
rust-version = { workspace = true }
99
license = { workspace = true }
@@ -51,7 +51,7 @@ version = "0.1"
5151

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

5757
[dependencies.deep_causality_data_structures]

deep_causality_algorithms/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.2.10](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.2.9...deep_causality_algorithms-v0.2.10) - 2026-01-22
11+
12+
### Other
13+
14+
- *(deep_causality_algorithms)* Fixed consitency bug.
15+
- Updated SBOM of and applied docstring fixes.
16+
1017
## [0.2.9](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.2.8...deep_causality_algorithms-v0.2.9) - 2026-01-09
1118

1219
### Other

deep_causality_algorithms/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_algorithms"
3-
version = "0.2.9"
3+
version = "0.2.10"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -33,12 +33,12 @@ path = "examples/example_surd.rs"
3333

3434
[dependencies.deep_causality_tensor]
3535
path = "../deep_causality_tensor"
36-
version = "0.3.0"
36+
version = "0.4.0"
3737

3838

3939
[dependencies.deep_causality_num]
4040
path = "../deep_causality_num"
41-
version = "0.1.12"
41+
version = "0.2.0"
4242

4343
[dependencies.rayon]
4444
version = "1.11"

deep_causality_core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.5](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_core-v0.0.4...deep_causality_core-v0.0.5) - 2026-01-22
11+
12+
### Other
13+
14+
- *(deep_causality)* Fixed multipple bugs in Causaloid.
15+
- *(deep_causality_core)* Fixed failing test.
16+
- *(deep_causality_core)* Fixed Diamond bug.
17+
1018
## [0.0.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_core-v0.0.3...deep_causality_core-v0.0.4) - 2026-01-09
1119

1220
### Added

deep_causality_core/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_core"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }

deep_causality_data_structures/CHANGELOG.md

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

2222
## [Unreleased]
2323

24+
## [0.10.10](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.9...deep_causality_data_structures-v0.10.10) - 2026-01-22
25+
26+
### Other
27+
28+
- *(deep_causality_datastructures)* Increased test coverage.
29+
2430
## [0.10.9](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.8...deep_causality_data_structures-v0.10.9) - 2026-01-09
2531

2632
### Other

deep_causality_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "deep_causality_data_structures"
6-
version = "0.10.9"
6+
version = "0.10.10"
77
edition = { workspace = true }
88
rust-version = { workspace = true }
99
license = { workspace = true }

deep_causality_discovery/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.3.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.3.3...deep_causality_discovery-v0.3.4) - 2026-01-22
11+
12+
### Other
13+
14+
- *(deep_causality_discovery)* Fixed numerous bugs.
15+
- Updated SBOM of and applied docstring fixes.
16+
1017
## [0.3.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.3.2...deep_causality_discovery-v0.3.3) - 2026-01-09
1118

1219
### Added

0 commit comments

Comments
 (0)