Skip to content

Commit 6afe185

Browse files
Merge pull request #351 from deepcausality-rs/release-plz-2025-10-02T12-05-29Z
chore: release
2 parents 6a4f208 + 0b20d8d commit 6afe185

File tree

10 files changed

+73
-12
lines changed

10 files changed

+73
-12
lines changed

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.

deep_causality_algorithms/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.1.4...deep_causality_algorithms-v0.2.0) - 2025-10-02
11+
12+
### Added
13+
14+
- *(deep_causality_algorithms)* Generic MRMR
15+
- *(deep_causality_algorithms)* Parallelize mRMR feature selection algo.
16+
- *(deep_causality_algorithms)* Added new example.
17+
- *(deep_causality_algorithms)* Added mrmr score to feature selection. documented in specs/006-mrmr-feature-score.
18+
- *(deep_causality_algorithms)* Updated MRMR Error with new variant for score calculation.
19+
- *(deep_causality_algorithms)* Added CDL variant of SURD state algo to handle None / NaN values in data
20+
- *(deep_causality_algorithms)* Added a CDL variant of the MRMR algorithm that uses CausalTensor<Option<f64>> with pairwise value selection to deal with missing data without introducing bias.
21+
- *(deep_causality_algorithms)* updated MRMRM Error
22+
23+
### Fixed
24+
25+
- *(deep_causality_algorithms)* renamed mrmr algo
26+
27+
### Other
28+
29+
- *(deep_causality_algorithms)* removed dead code and unreachable errors to increased test coverage.
30+
- *(deep_causality_algorithms)* increased test coverage.
31+
- Added specs for parallel implementation of mrmr algo
32+
- Added stage 2 to ICU sepsis case study
33+
- *(deep_causality_algorithms)* Updated README.md
34+
- *(deep_causality_algorithms)* Added test coverage for CDL SURD variant.
35+
1036
## [0.1.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.1.3...deep_causality_algorithms-v0.1.4) - 2025-09-25
1137

1238
### Other

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

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

3838

3939
[dependencies.deep_causality_num]

deep_causality_discovery/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.1.1...deep_causality_discovery-v0.2.0) - 2025-10-02
11+
12+
### Added
13+
14+
- *(deep_causality_algorithms)* Generic MRMR
15+
- *(deep_causality_algorithms)* Added mrmr score to feature selection. documented in specs/006-mrmr-feature-score.
16+
- *(deep_causality_discovery)* working on data cleaning step during CDL
17+
18+
### Fixed
19+
20+
- *(deep_causality_discovery)* refactored CDL module for improved modularity
21+
- *(deep_causality_algorithms)* renamed mrmr algo
22+
23+
### Other
24+
25+
- *(deep_causality_algorithms)* increased test coverage.
26+
- *(deep_causality_discovery)* Added or updates test coverage for DataCleaner and affected types.
27+
- Preparing DataCleaning stage in CDL.
28+
1029
## [0.1.1](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.1.0...deep_causality_discovery-v0.1.1) - 2025-09-25
1130

1231
### Fixed

deep_causality_discovery/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_discovery"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
license.workspace = true
@@ -23,12 +23,12 @@ path = "examples/main.rs"
2323
# Internal dependencies
2424
[dependencies.deep_causality_tensor]
2525
path = "../deep_causality_tensor"
26-
version = "0.1.4"
26+
version = "0.1.5"
2727

2828

2929
[dependencies.deep_causality_algorithms]
3030
path = "../deep_causality_algorithms"
31-
version = "0.1.4"
31+
version = "0.2.0"
3232

3333

3434
# External dependencies

deep_causality_tensor/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.1.5](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_tensor-v0.1.4...deep_causality_tensor-v0.1.5) - 2025-10-02
11+
12+
### Added
13+
14+
- *(deep_causality_tensor)* Made CausalTensor no-copy / clone for broader usage with complex data ttpes i.e. Uncertain<T>.
15+
1016
## [0.1.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_tensor-v0.1.3...deep_causality_tensor-v0.1.4) - 2025-09-25
1117

1218
### Other

deep_causality_tensor/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_tensor"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition.workspace = true
55
rust-version.workspace = true
66
license.workspace = true

deep_causality_uncertain/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.1](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_uncertain-v0.3.0...deep_causality_uncertain-v0.3.1) - 2025-10-02
11+
12+
### Added
13+
14+
- *(deep_causality_discovery)* working on data cleaning step during CDL
15+
16+
### Other
17+
18+
- *(deep_causality_uncertain)* removed flaky test assertion.
19+
1020
## [0.3.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_uncertain-v0.2.3...deep_causality_uncertain-v0.3.0) - 2025-09-25
1121

1222
### Added

deep_causality_uncertain/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_uncertain"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }

examples/case_study_icu_sepsis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ parquet = { version = "56.2" , default-features = false, features = ["arrow"]}
2222
[features]
2323
default = []
2424
# Enables parallel execution of the SURD algorithm by passing the feature to the algorithms crate.
25-
parallel = ["deep_causality_algorithms/parallel"]
25+
parallel = ["deep_causality_algorithms/parallel"]

0 commit comments

Comments
 (0)