summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES10
-rw-r--r--sphinx/__init__.py6
2 files changed, 5 insertions, 11 deletions
diff --git a/CHANGES b/CHANGES
index 2c28286ff..6856e11c0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-Release 6.0.0 (in development)
-==============================
+Release 6.0.0 (released Dec 29, 2022)
+=====================================
Dependencies
------------
@@ -46,9 +46,6 @@ Incompatible changes
roles. Also remove associated configuration variables ``c_allow_pre_v3`` and
``c_warn_on_allowed_pre_v3``. Patch by Adam Turner.
-Deprecated
-----------
-
Features added
--------------
@@ -63,9 +60,6 @@ Bugs fixed
* #10984: LaTeX: Document :confval:`latex_additional_files` behavior for files
with ``.tex`` extension.
-Testing
---------
-
Release 5.3.0 (released Oct 16, 2022)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index cb72434f8..44886c109 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -19,7 +19,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated",
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')
-__version__ = '6.0.0b3'
+__version__ = '6.0.0'
__display_version__ = __version__ # used for command line version
#: Version info for better programmatic use.
@@ -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, 0, 0, 'beta', 3)
+version_info = (6, 0, 0, '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