From 77aaa8696a5554b68e9b7daf691ccd4943e7fe7b Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Thu, 5 Jan 2023 16:58:09 +0000 Subject: [PATCH] Bump to 6.1.1 final --- CHANGES | 19 ++----------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 19 deletions(-) diff --git a/CHANGES b/CHANGES index c807f07f556..03a0f27fa67 100644 --- a/CHANGES +++ b/CHANGES @@ -1,17 +1,5 @@ -Release 6.1.1 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 6.1.1 (released Jan 05, 2023) +===================================== Bugs fixed ---------- @@ -19,9 +7,6 @@ Bugs fixed * #11091: Fix ``util.nodes.apply_source_workaround`` for ``literal_block`` nodes with no source information in the node or the node's parents. -Testing --------- - Release 6.1.0 (released Jan 05, 2023) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index c0ca8bfd88b..410845f09d4 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -30,11 +30,11 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (6, 1, 1, 'beta', 0) +version_info = (6, 1, 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