From 8c395a891b38ea5f3b3f3ade1e1d47f1a61dcb39 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 05:55:21 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 6 ++++++ Cargo.lock | 6 +++--- dcl_data_structures/CHANGELOG.md | 14 ++++++++++++++ dcl_data_structures/Cargo.toml | 2 +- deep_causality/Cargo.toml | 4 ++-- 5 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78a724e8..130524c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.7.2...deep_causality-v0.7.3) - 2024-11-26 + +### Other + +- updated the following local packages: dcl_data_structures + ## [0.7.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.7.1...deep_causality-v0.7.2) - 2024-11-24 ### Other diff --git a/Cargo.lock b/Cargo.lock index 709ce2d1..ceb3435d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,7 +436,7 @@ checksum = "068316d162870187e81178c217c07b9e65a449afb15d7a564f98c3e4ada24647" [[package]] name = "dcl_data_structures" -version = "0.6.1" +version = "0.7.0" dependencies = [ "criterion", "crossbeam-utils", @@ -456,10 +456,10 @@ dependencies = [ [[package]] name = "deep_causality" -version = "0.7.2" +version = "0.7.3" dependencies = [ "criterion", - "dcl_data_structures 0.6.1", + "dcl_data_structures 0.7.0", "deep_causality_macros 0.4.10", "ultragraph 0.5.4", ] diff --git a/dcl_data_structures/CHANGELOG.md b/dcl_data_structures/CHANGELOG.md index 97e572a9..1bf6efd7 100644 --- a/dcl_data_structures/CHANGELOG.md +++ b/dcl_data_structures/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/deepcausality-rs/deep_causality/compare/dcl_data_structures-v0.6.1...dcl_data_structures-v0.7.0) - 2024-11-26 + +### Other + +- Fixed import in tests +- Fixed ArrayGrid tests and benchmark. +- Fixed module declaration +- Added test coverage for point_index +- Merge branch 'deepcausality-rs:main' into main +- Added or updated example code for dcl_data_structures +- Fixed rewind bug in unsafe_storage_array. +- Added more tests to window type +- Fixed rewind bug in ArrayStorage + ## [0.6.1](https://github.com/deepcausality-rs/deep_causality/compare/dcl_data_structures-v0.6.0...dcl_data_structures-v0.6.1) - 2024-11-25 ### Other diff --git a/dcl_data_structures/Cargo.toml b/dcl_data_structures/Cargo.toml index c8c1f14a..f777ee0b 100644 --- a/dcl_data_structures/Cargo.toml +++ b/dcl_data_structures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dcl_data_structures" -version = "0.6.1" +version = "0.7.0" edition = "2021" rust-version = "1.80" repository = "https://github.com/deepcausality/deep_causality.rs" diff --git a/deep_causality/Cargo.toml b/deep_causality/Cargo.toml index 6c534bec..8f4fd2ac 100644 --- a/deep_causality/Cargo.toml +++ b/deep_causality/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deep_causality" -version = "0.7.2" +version = "0.7.3" edition = "2021" rust-version = "1.80" readme = "../README.md" @@ -20,7 +20,7 @@ authors = ["Marvin Hansen ", ] [dependencies.dcl_data_structures] path = "../dcl_data_structures" -version = "0.6" +version = "0.7" [dependencies.deep_causality_macros]