Skip to content

Commit c358b61

Browse files
committed
Bump version
1 parent de4ac2f commit c358b61

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

CHANGES.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
Release 7.4.0 (in development)
2+
==============================
3+
4+
Dependencies
5+
------------
6+
7+
Incompatible changes
8+
--------------------
9+
10+
Deprecated
11+
----------
12+
13+
Features added
14+
--------------
15+
16+
Bugs fixed
17+
----------
18+
19+
Testing
20+
-------
21+
122
Release 7.3.7 (released Apr 19, 2024)
223
=====================================
324

sphinx/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""The Sphinx documentation toolchain."""
22

3-
__version__ = '7.3.7'
3+
__version__ = '7.4.0'
44
__display_version__ = __version__ # used for command line version
55

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

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

35-
_in_development = False
35+
_in_development = True
3636
if _in_development:
3737
# Only import subprocess if needed
3838
import subprocess

0 commit comments

Comments
 (0)