Skip to content

Commit

Permalink
Bump to 5.2.1 final
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Sep 25, 2022
1 parent 15c1cba commit e0dbbc5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES
@@ -1,3 +1,13 @@
Release 5.2.1 (released Sep 24, 2022)
=====================================

Bugs fixed
----------

* #10861: Always normalise the ``pycon3`` lexer to ``pycon``.
* Fix using ``sphinx.ext.autosummary`` with modules containing titles in the
module-level docstring.

Release 5.2.0.post0 (released Sep 24, 2022)
===========================================

Expand Down
4 changes: 2 additions & 2 deletions sphinx/__init__.py
Expand Up @@ -19,7 +19,7 @@
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')

__version__ = '5.2.0.post0'
__version__ = '5.2.1'
__display_version__ = __version__ # used for command line version

#: Version info for better programmatic use.
Expand All @@ -30,7 +30,7 @@
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (5, 2, 0, 'final', 1)
version_info = (5, 2, 1, 'final', 0)

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

Expand Down

0 comments on commit e0dbbc5

Please sign in to comment.