diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-12-20 18:55:08 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-12-20 18:55:08 +0900 |
commit | 79ff24815442211286754b2457fbb13c1b7810e4 (patch) | |
tree | 28afecba4dc2106a4f4c842764d50536fdb8db3b | |
parent | 61fd867b37290b776ae1aa2c24f0687cefc82eb4 (diff) | |
download | sphinx-git-79ff24815442211286754b2457fbb13c1b7810e4.tar.gz |
Bump to 3.4.0 finalv3.4.0
-rw-r--r-- | CHANGES | 10 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 4 insertions, 10 deletions
@@ -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__)) |