diff --git a/CHANGELOG.md b/CHANGELOG.md index ada37503..9d781018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.6.2...deep_causality-v0.6.3) - 2024-01-14 + +### Other +- Moved example folder back to deep_causality folder due to cargo config errors. +- Flattened folder structure. +- Updated dependencies to latest version. +- Update parquet requirement from 48 to 49 +- Restricted ctx example dependency to mitigate yanked sub sub dependency warning. +- Removed pointless tests that only threw clippy linting errors. +- Added generic sum util with tests. +- Disabled unused re-exports in prelude. +- Updated examples to latest DC version. + ## [0.6.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.6.1...deep_causality-v0.6.2) - 2023-09-19 ### Fixed diff --git a/dcl_data_structures/CHANGELOG.md b/dcl_data_structures/CHANGELOG.md index 81555dbb..afa6c956 100644 --- a/dcl_data_structures/CHANGELOG.md +++ b/dcl_data_structures/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.7](https://github.com/deepcausality-rs/deep_causality/compare/dcl_data_structures-v0.4.6...dcl_data_structures-v0.4.7) - 2024-01-14 + +### Other +- Reduced multiplier in vec push benchmark to address long running benchmark for DCL data structures +- Fixed linting and formatting in tests. + ## [0.4.6](https://github.com/deepcausality-rs/deep_causality/compare/dcl_data_structures-v0.4.5...dcl_data_structures-v0.4.6) - 2023-08-30 ### Other diff --git a/dcl_data_structures/Cargo.toml b/dcl_data_structures/Cargo.toml index 6ca8591d..e0e4fd62 100644 --- a/dcl_data_structures/Cargo.toml +++ b/dcl_data_structures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dcl_data_structures" -version = "0.4.6" +version = "0.4.7" edition = "2021" rust-version = "1.65" repository = "https://github.com/deepcausality/deep_causality.rs" diff --git a/deep_causality/Cargo.toml b/deep_causality/Cargo.toml index 991521af..10712bb1 100644 --- a/deep_causality/Cargo.toml +++ b/deep_causality/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deep_causality" -version = "0.6.2" +version = "0.6.3" edition = "2021" rust-version = "1.65" readme = "../README.md" diff --git a/ultragraph/CHANGELOG.md b/ultragraph/CHANGELOG.md index 4df8fd58..1ab0f665 100644 --- a/ultragraph/CHANGELOG.md +++ b/ultragraph/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/deepcausality-rs/deep_causality/compare/ultragraph-v0.5.1...ultragraph-v0.5.2) - 2024-01-14 + +### Other +- Updated dependencies in Ultragraph. +- Updated dependencies in ultragraph crate. + ## [0.5.1](https://github.com/deepcausality-rs/deep_causality/compare/ultragraph-v0.5.0...ultragraph-v0.5.1) - 2023-09-06 ### Other diff --git a/ultragraph/Cargo.toml b/ultragraph/Cargo.toml index a683123d..40ab632f 100644 --- a/ultragraph/Cargo.toml +++ b/ultragraph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ultragraph" -version = "0.5.1" +version = "0.5.2" edition = "2021" rust-version = "1.65" repository = "https://github.com/deepcausality/deep_causality.rs"