Release `0.6.5` (#644)

diff --git a/Cargo.toml b/Cargo.toml
index 162d89d..009bcb9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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/"
@@ -57,7 +54,14 @@
 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
diff --git a/RELEASES.rst b/RELEASES.rst
index db9a698..29b00a9 100644
--- a/RELEASES.rst
+++ b/RELEASES.rst
@@ -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)
 ==========================