From d2bd16f331699f8cef38d5e5234efb56376e53be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Apr 2025 18:59:43 +0000 Subject: [PATCH] chore: release v0.8.2 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abc3c75ba..32d4b75fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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, diff --git a/Cargo.toml b/Cargo.toml index ad32a4548..a24b30ea3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 }