Skip to content

Commit caf3227

Browse files
trying to fix #315 (#322)
* trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> * trying to fix #315 Signed-off-by: Marvin Hansen <[email protected]> --------- Signed-off-by: Marvin Hansen <[email protected]>
1 parent 7f68aa0 commit caf3227

File tree

9 files changed

+151
-96
lines changed

9 files changed

+151
-96
lines changed

Cargo.lock

Lines changed: 108 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ members = [
1313
]
1414

1515
[workspace.dependencies]
16-
rand = {version = "0.9"}
17-
rand_distr = { version = "0.5" }
16+
# Empty
1817

1918
# Optimize all crates
2019
[profile.release]

deep_causality/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "deep_causality"
6-
version = "0.10.0"
6+
version = "0.11.0"
77
edition = "2021"
88
rust-version = "1.80"
99
readme = "../deep_causality_uncertain/README.md"

deep_causality_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "deep_causality_data_structures"
6-
version = "0.9.3"
6+
version = "0.9.4"
77
edition = "2021"
88
rust-version = "1.80"
99
repository = "https://github.com/deepcausality/deep_causality.rs"

deep_causality_macros/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.4](https://github.com/marvin-hansen/deep_causality/compare/deep_causality_macros-v0.8.3...deep_causality_macros-v0.8.4) - 2025-09-11
11+
12+
### Added
13+
14+
- *(deep_causality_macros)* Increased test coverage.
15+
- *(deep_causality_macros)* removed getter macro. Added coord_match! macro. Rewrote all macros in the macro_rules syntax.
16+
17+
### Other
18+
19+
- trying to fix #315
20+
1021
## [0.8.3](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_macros-v0.8.2...deep_causality_macros-v0.8.3) - 2025-09-08
1122

1223
### Added

deep_causality_macros/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "deep_causality_macros"
6-
version = "0.8.3"
6+
version = "0.8.4"
77
edition = "2021"
88
rust-version = "1.80"
99
repository = "https://github.com/deepcausality/deep_causality.rs"
@@ -13,4 +13,11 @@ description = "Costum code generation macros for the DeepCausality crate."
1313
documentation = "https://docs.rs/deep_causality"
1414
exclude = ["*.bazel", "*/*.bazel", "*.bazel.*", "BUILD", "BUILD.bazel", "MODULE.bazel", ".bazelignore",".bazelrc", "tests/**/*"]
1515

16+
17+
[features]
18+
1619
[dependencies]
20+
21+
22+
[package.metadata.docs.rs]
23+
all-features = true

deep_causality_uncertain/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.1](https://github.com/marvin-hansen/deep_causality/compare/deep_causality_uncertain-v0.2.0...deep_causality_uncertain-v0.2.1) - 2025-09-11
11+
12+
### Other
13+
14+
- trying to fix #315
15+
- trying to fix #315
16+
- trying to fix #315
17+
- trying to fix #315
18+
- trying to fix #315
19+
- trying to fix #315
20+
- trying to fix #315
21+
- Fixed dependencies in the Uncertain crate to resolve #315
22+
- Fixed global Cargo.toml to resolve #315
23+
- Fixed dependencies in the Uncertain crate to resolve #315
24+
- Updated project wide Bazel config, removed Bazel aliases, and updated project wide macro imports from the deep_causality_macro crate.
25+
1026
## [0.2.0](https://github.com/deepcausality-rs/deep_causality/compare/deep_causality_uncertain-v0.1.0...deep_causality_uncertain-v0.2.0) - 2025-09-08
1127

1228
### Added

deep_causality_uncertain/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_uncertain"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
rust-version = "1.80"
66
repository = "https://github.com/deepcausality/deep_causality.rs"
@@ -12,8 +12,8 @@ exclude = ["*.bazel", "*/*.bazel", "*.bazel.*", "BUILD", "BUILD.bazel", "MODULE
1212

1313

1414
[dependencies]
15-
rand = { workspace = true }
16-
rand_distr = { workspace = true }
15+
rand = { version = "0.9.2" }
16+
rand_distr = { version = "0.5.1"}
1717

1818
[lib]
1919
test = true

ultragraph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "ultragraph"
6-
version = "0.8.4"
6+
version = "0.8.5"
77
edition = "2021"
88
rust-version = "1.80"
99
repository = "https://github.com/deepcausality/deep_causality.rs"
@@ -19,7 +19,7 @@ exclude = ["*.bazel", "*/*.bazel", "*.bazel.*", "BUILD", "BUILD.bazel", "MODULE
1919

2020
[dev-dependencies]
2121
criterion = { version = "0.7.0", features = ["html_reports"] }
22-
rand = { version = "0.9.2", features = ["small_rng"] }
22+
rand = { version = "0.9", features = ["small_rng"] }
2323

2424

2525
[[bench]]

0 commit comments

Comments
 (0)