summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2023-01-05 16:58:09 +0000
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2023-01-05 16:58:09 +0000
commit77aaa8696a5554b68e9b7daf691ccd4943e7fe7b (patch)
tree71ea26f126322012c70ae80efd22660052caab1b
parent476c115b0e080e543066795378c372519feab452 (diff)
downloadsphinx-git-77aaa8696a5554b68e9b7daf691ccd4943e7fe7b.tar.gz
Bump to 6.1.1 finalv6.1.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 c807f07f5..03a0f27fa 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 c0ca8bfd8..410845f09 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, 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