summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2023-04-25 11:53:08 +0100
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2023-04-25 11:53:08 +0100
commitec993dda3690f260345133c47a4a0f6ef0b18493 (patch)
tree5e25f400a2d8628512bfb76df29ec2817ccf1c03
parentd2aa91f63ce2fa749e4d8835ea7b771ead29e54a (diff)
downloadsphinx-git-ec993dda3690f260345133c47a4a0f6ef0b18493.tar.gz
Bump to 6.2.1 finalv6.2.1
-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