Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.11.10...deep_causality-v0.12.0) - 2025-12-03

### Added

- *(deep_causality_sparse)* Fixing auto-release
- *(deep_causality_sparse)* Implemented initial CsrMatrix types.
- *(deep_causality)* Moved LogAppend trait into haft crate.

### Other

- Regenerated SBOM.
- Updated dev dependencies across the repo.
- Updated Dev dependencies.
- Merge branch 'deepcausality-rs:main' into main
- Merge remote-tracking branch 'origin/main'
- Restored manually generated SBOM to restore Dependency and licence scan.

## [0.11.10](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality-v0.11.9...deep_causality-v0.11.10) - 2025-11-23

### Other
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions deep_causality/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "deep_causality"
version = "0.11.10"
version = "0.12.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -44,11 +44,11 @@ version = "0.2"

[dependencies.deep_causality_num]
path = "../deep_causality_num"
version = "0.1.8"
version = "0.2.0"

[dependencies.deep_causality_tensor]
path = "../deep_causality_tensor"
version = "0.1"
version = "0.2"

[dependencies.ultragraph]
path = "../ultragraph"
Expand Down
15 changes: 15 additions & 0 deletions deep_causality_algorithms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.2.4...deep_causality_algorithms-v0.2.5) - 2025-12-03

### Added

- *(deep_causality_tensor)* Added full set of new algebraic trait system to CausalTensor.

### Other

- Regenerated SBOM.
- Updated dev dependencies across the repo.
- Updated Dev dependencies.
- Merge branch 'deepcausality-rs:main' into main
- Merge remote-tracking branch 'origin/main'
- Restored manually generated SBOM to restore Dependency and licence scan.

## [0.2.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_algorithms-v0.2.3...deep_causality_algorithms-v0.2.4) - 2025-11-23

### Other
Expand Down
6 changes: 3 additions & 3 deletions deep_causality_algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_algorithms"
version = "0.2.4"
version = "0.2.5"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -33,12 +33,12 @@ path = "examples/example_surd.rs"

[dependencies.deep_causality_tensor]
path = "../deep_causality_tensor"
version = "0.1.9"
version = "0.2.0"


[dependencies.deep_causality_num]
path = "../deep_causality_num"
version = "0.1.8"
version = "0.2.0"

[dependencies.rayon]
version = "1.11"
Expand Down
8 changes: 8 additions & 0 deletions deep_causality_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_ast-v0.1.2...deep_causality_ast-v0.1.3) - 2025-12-03

### Other

- Regenerated SBOM.
- Merge branch 'deepcausality-rs:main' into main
- Restored manually generated SBOM to restore Dependency and licence scan.

## [0.1.2](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_ast-v0.1.1...deep_causality_ast-v0.1.2) - 2025-11-23

### Removed
Expand Down
2 changes: 1 addition & 1 deletion deep_causality_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_ast"
version = "0.1.2"
version = "0.1.3"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions deep_causality_data_structures/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.5](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.4...deep_causality_data_structures-v0.10.5) - 2025-12-03

### Added

- *(deep_causality_sparse)* Implemented initial CsrMatrix types.

### Other

- Regenerated SBOM.
- Updated dev dependencies across the repo.
- Updated Dev dependencies.
- Merge branch 'deepcausality-rs:main' into main
- Restored manually generated SBOM to restore Dependency and licence scan.

## [0.10.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_data_structures-v0.10.3...deep_causality_data_structures-v0.10.4) - 2025-11-23

### Removed
Expand Down
2 changes: 1 addition & 1 deletion deep_causality_data_structures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "deep_causality_data_structures"
version = "0.10.4"
version = "0.10.5"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down
14 changes: 14 additions & 0 deletions deep_causality_discovery/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.2.5...deep_causality_discovery-v0.2.6) - 2025-12-03

### Added

- *(deep_causality_core)* Added test coverage

### Other

- Regenerated SBOM.
- Updated external deps in discovery crate and ICU example.
- Merge branch 'deepcausality-rs:main' into main
- Merge remote-tracking branch 'origin/main'
- Restored manually generated SBOM to restore Dependency and licence scan.

## [0.2.5](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_discovery-v0.2.4...deep_causality_discovery-v0.2.5) - 2025-11-23

### Other
Expand Down
4 changes: 2 additions & 2 deletions deep_causality_discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_discovery"
version = "0.2.5"
version = "0.2.6"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -23,7 +23,7 @@ path = "examples/main.rs"
# Internal dependencies
[dependencies.deep_causality_tensor]
path = "../deep_causality_tensor"
version = "0.1"
version = "0.2"


[dependencies.deep_causality_algorithms]
Expand Down
31 changes: 31 additions & 0 deletions deep_causality_haft/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_haft-v0.2.4...deep_causality_haft-v0.2.5) - 2025-12-03

### Added

- *(deep_causality_sparse)* Fixing auto-release
- *(deep_causality_core)* Added test coverage
- *(deep_causality_topology)* Initial implementation of topology data structures.
- *(deep_causality)* Moved LogAppend trait into haft crate.
- *(deep_causality_haft)* Updated Readme with details on non-std builds.
- *(deep_causality_haft)* Added support for non-std.
- *(deep_causality_haft)* Added module documentation
- *(deep_causality_haft)* Refactored source code structure of the HAFT crate.
- *(deep_causality_haft)* Added new examples for the HAFT crate.
- *(deep_causality_haft)* Improved existing examples for the HAFT crate.
- *(deep_causality_haft)* Implement Unbound HKTs, N-Arity traits, and

### Other

- Regenerated SBOM.
- *(deep_causality_core)* Lints and formatting.
- *(deep_causality_core)* Reworked Effect Log.
- *(deep_causality_core)* Fixed doctests.
- *(deep_causality_haft)* Added BoundedAdjunction trait.
- *(deep_causality_haft)* Updated Bazel config
- *(deep_causality_haft)* Code formatting.
- *(deep_causality_haft)* Removed flaky tests
- *(deep_causality_haft)* Added and update test suite to cover all newly added types and traits.
- Merge branch 'deepcausality-rs:main' into main
- Merge remote-tracking branch 'origin/main'
- Restored manually generated SBOM to restore Dependency and licence scan.

## [0.2.4](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_haft-v0.2.3...deep_causality_haft-v0.2.4) - 2025-11-23

### Other
Expand Down
4 changes: 2 additions & 2 deletions deep_causality_haft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_causality_haft"
version = "0.2.4"
version = "0.2.5"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -32,7 +32,7 @@ alloc = []

[dependencies.deep_causality_num]
path = "../deep_causality_num"
version = "0.1.8"
version = "0.2.0"
default-features = false

[[example]]
Expand Down
7 changes: 7 additions & 0 deletions deep_causality_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.11](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_macros-v0.8.10...deep_causality_macros-v0.8.11) - 2025-12-03

### Other

- Merge branch 'deepcausality-rs:main' into main
- Restored manually generated SBOM to restore Dependency and licence scan.

## [0.8.10](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_macros-v0.8.9...deep_causality_macros-v0.8.10) - 2025-11-23

### Removed
Expand Down
2 changes: 1 addition & 1 deletion deep_causality_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "deep_causality_macros"
version = "0.8.10"
version = "0.8.11"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand Down
Loading