Skip to content

Commit cbb19d6

Browse files
committed
Bump to 5.2.3 final
1 parent 650f63b commit cbb19d6

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGES

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Release 5.2.3 (released Sep 30, 2022)
2+
=====================================
3+
4+
* #10878: Fix base64 image embedding in ``sphinx.ext.imgmath``
5+
* #10886: Add ``:nocontentsentry:`` flag and global domain table of contents
6+
entry control option. Patch by Adam Turner
7+
18
Release 5.2.2 (released Sep 27, 2022)
29
=====================================
310

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.2'
22+
__version__ = '5.2.3'
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, 2, 'final', 0)
33+
version_info = (5, 2, 3, 'final', 0)
3434

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

0 commit comments

Comments
 (0)