Skip to content

Commit 357de52

Browse files
chore: release
1 parent 3b58a1d commit 357de52

File tree

25 files changed

+172
-28
lines changed

25 files changed

+172
-28
lines changed

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.11.8](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.11.7...deep_causality-v0.11.8) - 2025-11-05
11+
12+
### Added
13+
14+
- *(deep_causality_uncertain)* Migrated internal compute graph to ConsTree from deep_causality_ast crate.
15+
- *(ast)* Add deep_causality_ast crate with persistent tree
16+
17+
### Other
18+
19+
- Updated SBOM for all crates.
20+
- Merge branch 'deepcausality-rs:main' into 008-hkt-uncertain-specs
21+
- updated AGENTS.md and README.md
22+
1023
## [0.11.7](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.11.6...deep_causality-v0.11.7) - 2025-10-31
1124

1225
### Added

Cargo.lock

Lines changed: 12 additions & 12 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "deep_causality"
6-
version = "0.11.7"
6+
version = "0.11.8"
77
edition = { workspace = true }
88
rust-version = { workspace = true }
99
license = { workspace = true }

deep_causality_algorithms/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.2.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.2.1...deep_causality_algorithms-v0.2.2) - 2025-11-05
11+
12+
### Other
13+
14+
- Updated SBOM for all crates.
15+
1016
## [0.2.1](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.2.0...deep_causality_algorithms-v0.2.1) - 2025-10-31
1117

1218
### Added

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.1"
3+
version = "0.2.2"
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.1.6"
36+
version = "0.1.7"
3737

3838

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

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

deep_causality_ast/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# 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.1.1](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_ast-v0.1.0...deep_causality_ast-v0.1.1) - 2025-11-05
11+
12+
### Added
13+
14+
- *(deep_causality_ast)* Added From reference impl to ConstTree
15+
- *(deep_causality_ast)* code optimization.
16+
- *(deep_causality_ast)* Added get_id method
17+
18+
### Other
19+
20+
- *(deep_causality_ast)* Improved test organization.
21+
- *(deep_causality_tensor)* Improved test coverage and test organization.
22+
- Updated SBOM for all crates.
23+
- *(deep_causality_ast)* updated README.md

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.0"
3+
version = "0.1.1"
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.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.2...deep_causality_data_structures-v0.10.3) - 2025-11-05
25+
26+
### Other
27+
28+
- Updated SBOM for all crates.
29+
2430
## [0.10.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.1...deep_causality_data_structures-v0.10.2) - 2025-09-25
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.2"
6+
version = "0.10.3"
77
edition = { workspace = true }
88
rust-version = { workspace = true }
99
license = { workspace = true }

deep_causality_discovery/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.2.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.2.2...deep_causality_discovery-v0.2.3) - 2025-11-05
11+
12+
### Other
13+
14+
- Updated SBOM for all crates.
15+
1016
## [0.2.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.2.1...deep_causality_discovery-v0.2.2) - 2025-10-31
1117

1218
### Other

0 commit comments

Comments
 (0)