summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2023-04-04 10:27:20 -0700
committerGitHub <noreply@github.com>2023-04-04 10:27:20 -0700
commit8776211515b2bf87f12e5222713870884ff0ec2d (patch)
tree25c6272ed177ac6037bca3177b474c46ed9bea6f
parent7297ae8a37dd3356b64d383cb0c55735a6364bcc (diff)
downloadnetworkx-8776211515b2bf87f12e5222713870884ff0ec2d.tar.gz
Draft release notes (#6621)
-rw-r--r--doc/release/release_dev.rst29
1 files changed, 21 insertions, 8 deletions
diff --git a/doc/release/release_dev.rst b/doc/release/release_dev.rst
index 23a0f5ed..c1d993e3 100644
--- a/doc/release/release_dev.rst
+++ b/doc/release/release_dev.rst
@@ -3,7 +3,7 @@
Release date: TBD
-Supports Python 3.9, 3.10, and 3.11.
+Supports Python 3.8, 3.9, 3.10, and 3.11.
NetworkX is a Python package for the creation, manipulation, and study of the
structure, dynamics, and functions of complex networks.
@@ -19,21 +19,34 @@ Highlights
This release is the result of X of work with over X pull requests by
X contributors. Highlights include:
+- Minor bug-fixes and speed-ups
+- Improvements to plugin based backend infrastructure
+- Minor documentation improvements
+- Improved test coverage
+- Last release supporting Python 3.8
+- Stopped building PDF version of docs
+- Use Ruff for linting
Improvements
------------
-
-API Changes
------------
-
+- [`#6461 <https://github.com/networkx/networkx/pull/6461>`_]
+ Add simple cycle enumerator for undirected class
+- [`#6404 <https://github.com/networkx/networkx/pull/6404>`_]
+ Add spectral bisection for graphs using fiedler vector
+- [`#6244 <https://github.com/networkx/networkx/pull/6244>`_]
+ Improve handling of create_using to allow Mixins of type Protocol
+- [`#5399 <https://github.com/networkx/networkx/pull/5399>`_]
+ Add Laplace centrality measure
Deprecations
------------
-[`#6564 <https://github.com/networkx/networkx/pull/6564>`_]
-Deprecate ``single_target_shortest_path_length`` to change return value to a dict in v3.3.
-Deprecate ``shortest_path`` in case of all_pairs to change return value to a iterator in v3.3.
+- [`#6564 <https://github.com/networkx/networkx/pull/6564>`_]
+ Deprecate ``single_target_shortest_path_length`` to change return value to a dict in v3.3.
+ Deprecate ``shortest_path`` in case of all_pairs to change return value to a iterator in v3.3.
+- [`#5602 <https://github.com/networkx/networkx/pull/5602>`_]
+ Deprecate ``forest_str`` function (use ``write_network_text`` instead).
Merged PRs
----------