Skip to content

Commit

Permalink
Release 0.6.5 (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
indietyp committed May 8, 2024
1 parent da2e428 commit c32a86b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 6 deletions.
16 changes: 10 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
[package]

name = "petgraph"
version = "0.6.4"
version = "0.6.5"
readme = "README.md"
license = "MIT OR Apache-2.0"
authors = [
"bluss",
"mitchmindtree",
]
authors = ["bluss", "mitchmindtree"]

description = "Graph data structure library. Provides graph types and graph algorithms."
documentation = "https://docs.rs/petgraph/"
Expand Down Expand Up @@ -57,7 +54,14 @@ fxhash = "0.2.1"
rayon = ["dep:rayon", "indexmap/rayon"]

# feature flags for testing use only
all = ["unstable", "quickcheck", "matrix_graph", "stable_graph", "graphmap", "rayon"]
all = [
"unstable",
"quickcheck",
"matrix_graph",
"stable_graph",
"graphmap",
"rayon",
]
default = ["graphmap", "stable_graph", "matrix_graph"]

generate = [] # For unstable features
Expand Down
26 changes: 26 additions & 0 deletions RELEASES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
Version 0.6.5 (2024-05-06)
==========================

- Add rayon support for ``GraphMap`` (`#573`_, `#615`_)
- Add ``Topo::with_initials`` method (`#585`_)
- Add logo to the project (`#598`_)
- Add Ford-Fulkerson algorithm (`#640`_)
- Update ``itertools`` to 0.12.1 (`#628`_)
- Update ``GraphMap`` to allow custom hash functions (`#623`_)
- Fix documentation (`#630`_)
- Fix clippy warnings (`#627`_)
- (internal) Fix remove old ``copyclone`` macro (`#601`_)
- (internal) Move minimum spanning tree into own module (`#624`_)

.. _`#573`: https://github.com/petgraph/petgraph/pull/573
.. _`#615`: https://github.com/petgraph/petgraph/pull/615
.. _`#585`: https://github.com/petgraph/petgraph/pull/585
.. _`#598`: https://github.com/petgraph/petgraph/pull/598
.. _`#640`: https://github.com/petgraph/petgraph/pull/640
.. _`#628`: https://github.com/petgraph/petgraph/pull/628
.. _`#623`: https://github.com/petgraph/petgraph/pull/623
.. _`#630`: https://github.com/petgraph/petgraph/pull/630
.. _`#627`: https://github.com/petgraph/petgraph/pull/627
.. _`#601`: https://github.com/petgraph/petgraph/pull/601
.. _`#624`: https://github.com/petgraph/petgraph/pull/624

Version 0.6.4 (2023-08-21)
==========================

Expand Down

0 comments on commit c32a86b

Please sign in to comment.