summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2023-05-12 22:48:41 +0100
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2023-05-12 22:48:41 +0100
commitd48cc783b6e48b99cbbcf5462f44c59a4ed78e6a (patch)
treea3723f2e05b04394d61d3a3c985c483a8c3023db
parentde6b18ac7de317030be4344ea7a9d553c423ffcf (diff)
downloadsphinx-git-d48cc783b6e48b99cbbcf5462f44c59a4ed78e6a.tar.gz
Bump to 7.0.1 finalv7.0.1
-rw-r--r--CHANGES16
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 16 deletions
diff --git a/CHANGES b/CHANGES
index 2ece2cac6..06c31b9c8 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 5af167f10..2391eb240 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -30,11 +30,11 @@ __display_version__ = __version__ # used for command line version
#:
#: .. 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