Skip to content

Commit e712eae

Browse files
committed
Bump to 5.1.1 final
1 parent 0555345 commit e712eae

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGES

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Release 5.1.1 (released Jul 26, 2022)
2+
=====================================
3+
4+
Bugs fixed
5+
----------
6+
7+
* #10701: Fix ValueError in the new ``deque`` based ``sphinx.ext.napolean``
8+
iterator implementation.
9+
* #10702: Restore compatability with third-party builders.
10+
111
Release 5.1.0 (released Jul 24, 2022)
212
=====================================
313

sphinx/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
2222
DeprecationWarning, module='docutils.frontend')
2323

24-
__version__ = '5.1.0'
25-
__released__ = '5.1.0' # used when Sphinx builds its own docs
24+
__version__ = '5.1.1'
25+
__released__ = '5.1.1' # used when Sphinx builds its own docs
2626

2727
#: Version info for better programmatic use.
2828
#:
@@ -32,7 +32,7 @@
3232
#:
3333
#: .. versionadded:: 1.2
3434
#: Before version 1.2, check the string ``sphinx.__version__``.
35-
version_info = (5, 1, 0, 'final', 0)
35+
version_info = (5, 1, 1, 'final', 0)
3636

3737
package_dir = path.abspath(path.dirname(__file__))
3838

0 commit comments

Comments
 (0)