Skip to content

Commit

Permalink
Bump to 5.1.1 final
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Jul 26, 2022
1 parent 0555345 commit e712eae
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
=====================================

Expand Down
6 changes: 3 additions & 3 deletions sphinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#:
Expand All @@ -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__))

Expand Down

0 comments on commit e712eae

Please sign in to comment.