diff --git a/CHANGELOG.md b/CHANGELOG.md index 130524c14..c509a0701 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.7.3...deep_causality-v0.7.4) - 2025-05-16 + +### Other + +- Bump parquet from 54.2.1 to 54.3.1 +- Applied a ton of lints. +- Fixed tests, benchmarks, and fixed some lints + ## [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 diff --git a/Cargo.lock b/Cargo.lock index 8bbf6e356..11563f2db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -441,7 +441,7 @@ checksum = "068316d162870187e81178c217c07b9e65a449afb15d7a564f98c3e4ada24647" [[package]] name = "dcl_data_structures" -version = "0.7.0" +version = "0.8.0" dependencies = [ "criterion", "crossbeam-utils", @@ -455,23 +455,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e3a132c3ce4bb6409d1f43157f03c9c37335bfa959df5491cd06b2c2e79bdcd" dependencies = [ "dcl_data_structures 0.4.7", - "deep_causality_macros 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "ultragraph 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "deep_causality_macros 0.4.10", + "ultragraph 0.5.4", ] [[package]] name = "deep_causality" -version = "0.7.3" +version = "0.7.4" dependencies = [ "criterion", - "dcl_data_structures 0.7.0", - "deep_causality_macros 0.4.10", - "ultragraph 0.5.4", + "dcl_data_structures 0.8.0", + "deep_causality_macros 0.4.11", + "ultragraph 0.5.5", ] [[package]] name = "deep_causality_macros" version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7637b29da496b4ee0e6aaea919f4a65e69cc54cf691a77cdfa548764f2e26da4" dependencies = [ "proc-macro2", "quote", @@ -480,9 +482,7 @@ dependencies = [ [[package]] name = "deep_causality_macros" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7637b29da496b4ee0e6aaea919f4a65e69cc54cf691a77cdfa548764f2e26da4" +version = "0.4.11" dependencies = [ "proc-macro2", "quote", @@ -1258,23 +1258,23 @@ dependencies = [ [[package]] name = "ultragraph" version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b89d842f7e6b9c798f7a3edbc7759293afc6f1494f7b6b15ce05926a77a8dfa" dependencies = [ "ahash", - "criterion", "deep_causality_macros 0.4.10", - "petgraph 0.7.1", - "rand", + "petgraph 0.6.5", ] [[package]] name = "ultragraph" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b89d842f7e6b9c798f7a3edbc7759293afc6f1494f7b6b15ce05926a77a8dfa" +version = "0.5.5" dependencies = [ "ahash", - "deep_causality_macros 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "petgraph 0.6.5", + "criterion", + "deep_causality_macros 0.4.11", + "petgraph 0.7.1", + "rand", ] [[package]] diff --git a/dcl_data_structures/CHANGELOG.md b/dcl_data_structures/CHANGELOG.md index 1bf6efd74..e126cf41d 100644 --- a/dcl_data_structures/CHANGELOG.md +++ b/dcl_data_structures/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/deepcausality-rs/deep_causality/compare/dcl_data_structures-v0.7.0...dcl_data_structures-v0.8.0) - 2025-05-16 + +### Other + +- Applied a ton of lints. +- Fixed tests, benchmarks, and fixed some lints +- Bump rand from 0.8.5 to 0.9.0 +- Code formatting and linting +- Added or updated tests for all atomic sequence implementations. +- Merge branch 'deepcausality-rs:main' into main +- Code formatting +- Fixed tests and benches +- made get_min_cursor_sequence generic +- made get_min_cursor_sequence generic +- Added Atomic sequence trait +- Added uniform batch sizes to all ring_buffer benchmarks + ## [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 diff --git a/dcl_data_structures/Cargo.toml b/dcl_data_structures/Cargo.toml index e83f7177b..b50854ddb 100644 --- a/dcl_data_structures/Cargo.toml +++ b/dcl_data_structures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dcl_data_structures" -version = "0.7.0" +version = "0.8.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 8f4fd2ac6..9fb336b0b 100644 --- a/deep_causality/Cargo.toml +++ b/deep_causality/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deep_causality" -version = "0.7.3" +version = "0.7.4" 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.7" +version = "0.8" [dependencies.deep_causality_macros] diff --git a/deep_causality_macros/CHANGELOG.md b/deep_causality_macros/CHANGELOG.md index 78677cd1a..c91a9c566 100644 --- a/deep_causality_macros/CHANGELOG.md +++ b/deep_causality_macros/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.11](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_macros-v0.4.10...deep_causality_macros-v0.4.11) - 2025-05-16 + +### Other + +- Applied a ton of lints. + ## [0.4.10](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_macros-v0.4.9...deep_causality_macros-v0.4.10) - 2024-11-24 ### Other diff --git a/deep_causality_macros/Cargo.toml b/deep_causality_macros/Cargo.toml index 2d5b2d269..4123836ae 100644 --- a/deep_causality_macros/Cargo.toml +++ b/deep_causality_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deep_causality_macros" -version = "0.4.10" +version = "0.4.11" edition = "2021" rust-version = "1.80" repository = "https://github.com/deepcausality/deep_causality.rs" diff --git a/ultragraph/CHANGELOG.md b/ultragraph/CHANGELOG.md index 9f14df662..91941173b 100644 --- a/ultragraph/CHANGELOG.md +++ b/ultragraph/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.5](https://github.com/deepcausality-rs/deep_causality/compare/ultragraph-v0.5.4...ultragraph-v0.5.5) - 2025-05-16 + +### Other + +- Fixed tests, benchmarks, and fixed some lints +- Bump rand from 0.8.5 to 0.9.0 +- Bump petgraph from 0.6.6 to 0.7.0 + ## [0.5.4](https://github.com/deepcausality-rs/deep_causality/compare/ultragraph-v0.5.3...ultragraph-v0.5.4) - 2024-11-24 ### Other diff --git a/ultragraph/Cargo.toml b/ultragraph/Cargo.toml index 5e585d37b..5bd920d49 100644 --- a/ultragraph/Cargo.toml +++ b/ultragraph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ultragraph" -version = "0.5.4" +version = "0.5.5" edition = "2021" rust-version = "1.80" repository = "https://github.com/deepcausality/deep_causality.rs"