Skip to content

Commit a874246

Browse files
committed
Bump version
1 parent 1afa344 commit a874246

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGES.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Release 7.4.3 (in development)
2+
==============================
3+
4+
Bugs fixed
5+
----------
6+
7+
18
Release 7.4.2 (released Jul 15, 2024)
29
=====================================
310

sphinx/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""The Sphinx documentation toolchain."""
22

3-
__version__ = '7.4.2'
3+
__version__ = '7.4.3'
44
__display_version__ = __version__ # used for command line version
55

66
# Keep this file executable as-is in Python 3!
@@ -27,11 +27,11 @@
2727
#:
2828
#: .. versionadded:: 1.2
2929
#: Before version 1.2, check the string ``sphinx.__version__``.
30-
version_info = (7, 4, 2, 'final', 0)
30+
version_info = (7, 4, 3, 'beta', 0)
3131

3232
package_dir = os.path.abspath(os.path.dirname(__file__))
3333

34-
_in_development = False
34+
_in_development = True
3535
if _in_development:
3636
# Only import subprocess if needed
3737
import subprocess

0 commit comments

Comments
 (0)