From 1dc45fd94bc847ec6761b5246963c471cd1caf6e Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Mon, 15 Jul 2024 11:01:42 +0100 Subject: [PATCH] Bump to 7.4.1 final --- CHANGES.rst | 19 ++----------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 19 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 59df3070283..261809087c7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,17 +1,5 @@ -Release 7.4.1 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 7.4.1 (released Jul 15, 2024) +===================================== Bugs fixed ---------- @@ -21,9 +9,6 @@ Bugs fixed * #12579, #12581: Restore support for ``typing.ParamSpec`` in autodoc. Patch by Adam Turner. -Testing -------- - Release 7.4.0 (released Jul 15, 2024) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index dd0b5fda8ab..78c0a8f9e30 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,11 +27,11 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (7, 4, 1, 'beta', 0) +version_info = (7, 4, 1, 'final', 0) package_dir = os.path.abspath(os.path.dirname(__file__)) -_in_development = True +_in_development = False if _in_development: # Only import subprocess if needed import subprocess