File tree Expand file tree Collapse file tree 5 files changed +38
-5
lines changed Expand file tree Collapse file tree 5 files changed +38
-5
lines changed Original file line number Diff line number Diff line change
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 ) )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " deep_causality"
3
- version = " 0.8.0 "
3
+ version = " 0.8.1 "
4
4
edition = " 2021"
5
5
rust-version = " 1.80"
6
6
readme = " ../README.md"
@@ -28,7 +28,7 @@ version = "0.8.0"
28
28
29
29
[dependencies .ultragraph ]
30
30
path = " ../ultragraph"
31
- version = " 0.8.0 "
31
+ version = " 0.8.1 "
32
32
33
33
34
34
[dev-dependencies ]
Original file line number Diff line number Diff line change @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
27
## [ 0.5.6] ( https://github.com/marvin-hansen/deep_causality/compare/ultragraph-v0.5.5...ultragraph-v0.5.6 ) - 2025-06-19
9
28
10
29
### Other
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ultragraph"
3
- version = " 0.8.0 "
3
+ version = " 0.8.1 "
4
4
edition = " 2021"
5
5
rust-version = " 1.80"
6
6
repository = " https://github.com/deepcausality/deep_causality.rs"
You can’t perform that action at this time.
0 commit comments