Skip to content

Commit e0dbbc5

Browse files
committed
Bump to 5.2.1 final
1 parent 15c1cba commit e0dbbc5

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGES

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Release 5.2.1 (released Sep 24, 2022)
2+
=====================================
3+
4+
Bugs fixed
5+
----------
6+
7+
* #10861: Always normalise the ``pycon3`` lexer to ``pycon``.
8+
* Fix using ``sphinx.ext.autosummary`` with modules containing titles in the
9+
module-level docstring.
10+
111
Release 5.2.0.post0 (released Sep 24, 2022)
212
===========================================
313

sphinx/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
2020
DeprecationWarning, module='docutils.frontend')
2121

22-
__version__ = '5.2.0.post0'
22+
__version__ = '5.2.1'
2323
__display_version__ = __version__ # used for command line version
2424

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

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

0 commit comments

Comments
 (0)