Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-07-27 00:16:02 +0300
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-07-27 00:16:02 +0300
commite712eae382d213ce3f4866ad6f5b3c84ce4f4409 (patch)
tree15dfb4e1a6880aba2b1d4cdc0d1f733ae87c63b4
parent0555345ad715b1e5ec83bce2e4a993441ffb8f29 (diff)
Bump to 5.1.1 finalv5.1.1
-rw-r--r--CHANGES10
-rw-r--r--sphinx/__init__.py6
2 files changed, 13 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 07da6cfe6..82c87936c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,13 @@
+Release 5.1.1 (released Jul 26, 2022)
+=====================================
+
+Bugs fixed
+----------
+
+* #10701: Fix ValueError in the new ``deque`` based ``sphinx.ext.napolean``
+ iterator implementation.
+* #10702: Restore compatability with third-party builders.
+
Release 5.1.0 (released Jul 24, 2022)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index aa865cc8d..f1377c5d5 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -21,8 +21,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated",
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')
-__version__ = '5.1.0'
-__released__ = '5.1.0' # used when Sphinx builds its own docs
+__version__ = '5.1.1'
+__released__ = '5.1.1' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@@ -32,7 +32,7 @@ __released__ = '5.1.0' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (5, 1, 0, 'final', 0)
+version_info = (5, 1, 1, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))