Skip to content

Commit bfb5210

Browse files
Merge pull request #266 from marvin-hansen/main
Preparing release
2 parents 8a0c34a + e667918 commit bfb5210

File tree

5 files changed

+38
-5
lines changed

5 files changed

+38
-5
lines changed

Cargo.lock

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

deep_causality/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.8.1](https://github.com/marvin-hansen/deep_causality/compare/deep_causality-v0.8.0...deep_causality-v0.8.1) - 2025-07-10
11+
12+
### Other
13+
14+
- Fixed memory leak in ultragraph bench ([#261](https://github.com/marvin-hansen/deep_causality/pull/261))

deep_causality/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deep_causality"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
rust-version = "1.80"
66
readme = "../README.md"
@@ -28,7 +28,7 @@ version = "0.8.0"
2828

2929
[dependencies.ultragraph]
3030
path = "../ultragraph"
31-
version = "0.8.0"
31+
version = "0.8.1"
3232

3333

3434
[dev-dependencies]

ultragraph/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.1](https://github.com/marvin-hansen/deep_causality/compare/ultragraph-v0.8.0...ultragraph-v0.8.1) - 2025-07-10
9+
10+
### Other
11+
12+
- Improved perf of deduplication in brandes_bfs_and_path_counting
13+
- Improved test coverage
14+
- Fixed breaking API by restring previous public re-export.
15+
- Added test coverage for betweenness_centrality algo.
16+
- Implemented Brandes' algorithm
17+
- Refactored ultragraph's trait system and algo implementations for better maintainability.
18+
- Updated README.md
19+
- Formatting and linting.
20+
- Improved test coverage.
21+
- Added Tarjan's algorithm to UltraGraph.
22+
- Improved test coverage for Dijkstra's algorithm. Improved docstring.
23+
- Removed problematic check in Dijkstra's algorithm
24+
- Added Dijkstra's algorithm to UltraGraph.
25+
- Fixed a memory leak in the ultragraph benchmark.
26+
827
## [0.5.6](https://github.com/marvin-hansen/deep_causality/compare/ultragraph-v0.5.5...ultragraph-v0.5.6) - 2025-06-19
928

1029
### Other

ultragraph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ultragraph"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
rust-version = "1.80"
66
repository = "https://github.com/deepcausality/deep_causality.rs"

0 commit comments

Comments
 (0)