summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES19
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 19 deletions
diff --git a/CHANGES b/CHANGES
index 28cc885b6..f532c45a8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,5 @@
-Release 6.2.1 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
-
-Features added
---------------
+Release 6.2.1 (released Apr 25, 2023)
+=====================================
Bugs fixed
----------
@@ -19,9 +7,6 @@ Bugs fixed
* #11355: Revert the default type of :confval:`nitpick_ignore` and
:confval:`nitpick_ignore_regex` to ``list``.
-Testing
---------
-
Release 6.2.0 (released Apr 23, 2023)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 0b04346d9..da649fbdf 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 = (6, 2, 1, 'beta', 0)
+version_info = (6, 2, 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