From e712eae382d213ce3f4866ad6f5b3c84ce4f4409 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 26 Jul 2022 22:16:02 +0100 Subject: [PATCH] Bump to 5.1.1 final --- CHANGES | 10 ++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 07da6cfe61d..82c87936c21 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 aa865cc8d5d..f1377c5d5ea 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,8 +21,8 @@ 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 @@ #: #: .. 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__))