summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2023-04-04 12:30:45 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2023-04-04 12:33:05 -0700
commit13ea1f11c442e80f96805af804bdf13932de8bb2 (patch)
tree729eaf63dda30c107266566c1c31ad8ffa41b492
parent8776211515b2bf87f12e5222713870884ff0ec2d (diff)
downloadnetworkx-13ea1f11c442e80f96805af804bdf13932de8bb2.tar.gz
Prep 3.1 release
-rw-r--r--.git-blame-ignore-revs1
-rw-r--r--doc/release/release_3.1.rst60
-rw-r--r--doc/release/release_dev.rst28
3 files changed, 67 insertions, 22 deletions
diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index e18834bd..64b36ad8 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -11,3 +11,4 @@ bec833c60c61e838722bf096da75949a9b519d1f
be23fa0e422b51f4526828cb19b8105c89e5dcbb
5c0b11afb4c0882a070d522ef3fa41482ba935d3
5fcf01b9a43a097c4f579486023d1279b2b88619
+7297ae8a37dd3356b64d383cb0c55735a6364bcc
diff --git a/doc/release/release_3.1.rst b/doc/release/release_3.1.rst
new file mode 100644
index 00000000..c1d993e3
--- /dev/null
+++ b/doc/release/release_3.1.rst
@@ -0,0 +1,60 @@
+3.1 (unreleased)
+================
+
+Release date: TBD
+
+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.
+
+For more information, please visit our `website <https://networkx.org/>`_
+and our :ref:`gallery of examples <examples_gallery>`.
+Please send comments and questions to the `networkx-discuss mailing list
+<http://groups.google.com/group/networkx-discuss>`_.
+
+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
+------------
+
+- [`#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.
+- [`#5602 <https://github.com/networkx/networkx/pull/5602>`_]
+ Deprecate ``forest_str`` function (use ``write_network_text`` instead).
+
+Merged PRs
+----------
+
+<output of contribs.py>
+
+
+Contributors
+------------
+
+<output of contribs.py>
diff --git a/doc/release/release_dev.rst b/doc/release/release_dev.rst
index c1d993e3..59bffe0c 100644
--- a/doc/release/release_dev.rst
+++ b/doc/release/release_dev.rst
@@ -1,9 +1,9 @@
-3.1 (unreleased)
+3.2 (unreleased)
================
Release date: TBD
-Supports Python 3.8, 3.9, 3.10, and 3.11.
+Supports Python 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,34 +19,18 @@ 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
------------
-- [`#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
+
+API Changes
+-----------
+
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.
-- [`#5602 <https://github.com/networkx/networkx/pull/5602>`_]
- Deprecate ``forest_str`` function (use ``write_network_text`` instead).
Merged PRs
----------