Skip to content
Draft
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
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.


## [0.8.2](https://github.com/ufabc-bcc/ABCGraphs/compare/petgraph@v0.8.1...petgraph@v0.8.2) - 2025-04-13

### New Features

- add graph6 encoder ([#4](https://github.com/ufabc-bcc/ABCGraphs/pull/4))
- add graph6 decoder ([#5](https://github.com/ufabc-bcc/ABCGraphs/pull/5))
- Connectivity algorithms sync April ([#21](https://github.com/ufabc-bcc/ABCGraphs/pull/21))
- April Sync - Dinics Algorithm ([#25](https://github.com/ufabc-bcc/ABCGraphs/pull/25))
- April Sync - Add bipartite matching ([#26](https://github.com/ufabc-bcc/ABCGraphs/pull/26))
- April Sync - remove random graph generator ([#20](https://github.com/ufabc-bcc/ABCGraphs/pull/20))

### Other changes

- docs and refact ([#8](https://github.com/ufabc-bcc/ABCGraphs/pull/8))
- Add Prim's algorithm for MST ([#10](https://github.com/ufabc-bcc/ABCGraphs/pull/10))
- Random graph generator ([#9](https://github.com/ufabc-bcc/ABCGraphs/pull/9))
- Cut edges ([#11](https://github.com/ufabc-bcc/ABCGraphs/pull/11))
- Cut vertices ([#12](https://github.com/ufabc-bcc/ABCGraphs/pull/12))
- 2 connected components ([#13](https://github.com/ufabc-bcc/ABCGraphs/pull/13))
- maximal 2-edge-connected components ([#14](https://github.com/ufabc-bcc/ABCGraphs/pull/14))
- Add Dinic's Maximum Flow Algorithm ([#16](https://github.com/ufabc-bcc/ABCGraphs/pull/16))
- Bipartite matching ([#17](https://github.com/ufabc-bcc/ABCGraphs/pull/17))
- Merge remote-tracking branch 'original/master' into merge-apr
- Merge branch 'master-original'

## [0.8.1](https://github.com/petgraph/petgraph/compare/petgraph@v0.8.0...petgraph@v0.8.1) - 2025-04-07

This patch release re-adds a missing `VisitMap` implementation that was dropped in the `0.8.0` release,
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "petgraph"
version = "0.8.1"
version = "0.8.2"
readme = "README.md"
license = "MIT OR Apache-2.0"
authors = { workspace = true }
Expand Down