From 5b56a231afeb6e96e87871546df3db4463a61c93 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Thu, 29 Dec 2022 14:59:17 +0000 Subject: [PATCH] Bump to 6.0.0 final --- CHANGES | 10 ++-------- sphinx/__init__.py | 6 +++--- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/CHANGES b/CHANGES index 2c28286ffe5..6856e11c073 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 cb72434f840..44886c10939 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -19,7 +19,7 @@ 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 @@ #: #: .. 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