From 4e1004a9c581ff18a66522a426150aba144dc7fe Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Thu, 5 Jan 2023 12:23:09 +0000 Subject: [PATCH] Bump to 6.1.0 final --- CHANGES | 7 ++----- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CHANGES b/CHANGES index 91353c0a66d..750d33c1486 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 6.1.0 (in development) -============================== +Release 6.1.0 (released Jan 05, 2023) +===================================== Dependencies ------------ @@ -65,9 +65,6 @@ Bugs fixed * #11074: LaTeX: Can't change sphinxnote to use sphinxheavybox starting with 5.1.0 -Testing --------- - Release 6.0.1 (released Jan 05, 2023) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 55dbe27f2a6..3a9b13c3993 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.1' +__version__ = '6.1.0' __display_version__ = __version__ # used for command line version #: Version info for better programmatic use. @@ -30,7 +30,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (6, 0, 1, 'final', 0) +version_info = (6, 1, 0, 'final', 0) package_dir = path.abspath(path.dirname(__file__))