diff --git a/CHANGES b/CHANGES index dab9bb0afc2..fe66c6470e9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,17 +1,5 @@ -Release 7.1.1 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 7.1.1 (released Jul 27, 2023) +===================================== Bugs fixed ---------- @@ -19,9 +7,6 @@ Bugs fixed * #11514: Fix ``SOURCE_DATE_EPOCH`` in multi-line copyright footer. Patch by Bénédikt Tran. -Testing -------- - Release 7.1.0 (released Jul 24, 2023) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index ca5cbbd4142..f10dd047123 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, 1, 1, 'beta', 0) +version_info = (7, 1, 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