summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2022-10-01 13:47:12 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2022-10-01 13:47:12 -0700
commit11d2d8e01bc2d2ca1da5b97e978bb280176a3790 (patch)
tree2d84fe347d9e540ca7706b8d80d7825d599b80b0
parentc7088c5f8bcc5e20123709cfdfa2f98c6be85980 (diff)
downloadnetworkx-11d2d8e01bc2d2ca1da5b97e978bb280176a3790.tar.gz
Designate 2.8.7 releasenetworkx-2.8.7
-rw-r--r--doc/_templates/layout.html2
-rw-r--r--doc/release/release_2.8.7.rst19
-rw-r--r--networkx/__init__.py2
3 files changed, 19 insertions, 4 deletions
diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html
deleted file mode 100644
index b4665f6c..00000000
--- a/doc/_templates/layout.html
+++ /dev/null
@@ -1,2 +0,0 @@
-{% extends "!layout.html" %} {% block content %} {% include "dev_banner.html" %}
-{{ super() }} {% endblock %}
diff --git a/doc/release/release_2.8.7.rst b/doc/release/release_2.8.7.rst
index 9f3cf3ca..71b5aec3 100644
--- a/doc/release/release_2.8.7.rst
+++ b/doc/release/release_2.8.7.rst
@@ -1,7 +1,7 @@
NetworkX 2.8.7
==============
-Release date: TBD
+Release date: 1 October 2022
Supports Python 3.8, 3.9, and 3.10.
@@ -21,6 +21,17 @@ Minor documentation and bug fixes.
Merged PRs
----------
+- Bump release version
+- Fixed unused root argument in has_bridges (#5846)
+- docstring updates for `union`, `disjoint_union`, and `compose` (#5892)
+- Updated networkx/classes/function.py . Solves Issue #5463 (#5474)
+- Improved documentation for all_simple_paths (#5944)
+- Change is_path to return False when node not in G instead of raising exception (#5943)
+- Minor docstring touchups and test refactor for `is_path` (#5967)
+- Update documentation header links for latest pydata-sphinx-theme (#5966)
+- Fix failing example due to mpl 3.6 colorbar. (#5994)
+- Add Tidelift security vulnerability link (#6001)
+- Update linters (#6006)
Improvements
------------
@@ -33,3 +44,9 @@ Improvements
Contributors
------------
+- Juanita Gomez
+- Kevin Brown
+- 0ddoes
+- pmlpm1986
+- Dan Schult
+- Jarrod Millman
diff --git a/networkx/__init__.py b/networkx/__init__.py
index 350ce18c..0b49798d 100644
--- a/networkx/__init__.py
+++ b/networkx/__init__.py
@@ -8,7 +8,7 @@ structure, dynamics, and functions of complex networks.
See https://networkx.org for complete documentation.
"""
-__version__ = "2.8.7.dev0"
+__version__ = "2.8.7"
def __getattr__(name):