summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-12-20 18:55:08 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-12-20 18:55:08 +0900
commit79ff24815442211286754b2457fbb13c1b7810e4 (patch)
tree28afecba4dc2106a4f4c842764d50536fdb8db3b
parent61fd867b37290b776ae1aa2c24f0687cefc82eb4 (diff)
downloadsphinx-git-79ff24815442211286754b2457fbb13c1b7810e4.tar.gz
Bump to 3.4.0 finalv3.4.0
-rw-r--r--CHANGES10
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 10 deletions
diff --git a/CHANGES b/CHANGES
index d818661eb..c43f11dcd 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,8 +1,5 @@
-Release 3.4.0 (in development)
-==============================
-
-Dependencies
-------------
+Release 3.4.0 (released Dec 20, 2020)
+=====================================
Incompatible changes
--------------------
@@ -99,9 +96,6 @@ Bugs fixed
* #8519: LaTeX: Prevent page brake in the middle of a seealso
* #8520: C, fix copying of AliasNode.
-Testing
---------
-
Release 3.3.1 (released Nov 12, 2020)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 2b5d853e5..779a2c99b 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -32,7 +32,7 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '3.4.0+'
+__version__ = '3.4.0'
__released__ = '3.4.0' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@@ -43,7 +43,7 @@ __released__ = '3.4.0' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (3, 4, 0, 'beta', 0)
+version_info = (3, 4, 0, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))