From d48cc783b6e48b99cbbcf5462f44c59a4ed78e6a Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Fri, 12 May 2023 22:48:41 +0100 Subject: [PATCH] Bump to 7.0.1 final --- CHANGES | 16 ++-------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/CHANGES b/CHANGES index 2ece2cac673..06c31b9c8c6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 7.0.1 (in development) -============================== +Release 7.0.1 (released May 12, 2023) +===================================== Dependencies ------------ @@ -8,15 +8,6 @@ Dependencies .. _Docutils 0.20: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-20-2023-05-04 -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - Bugs fixed ---------- @@ -24,9 +15,6 @@ Bugs fixed following the removal of support for setuptools. Patch by Willem Mulder. -Testing --------- - Release 7.0.0 (released Apr 29, 2023) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 5af167f10ca..2391eb2408c 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -30,11 +30,11 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (7, 0, 1, 'beta', 0) +version_info = (7, 0, 1, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) -_in_development = True +_in_development = False if _in_development: # Only import subprocess if needed import subprocess