Bump to 2.4.3 final

This commit is contained in:
Takeshi KOMIYA 2020-02-22 23:17:23 +09:00
parent 51ac09d7b4
commit 87fd65fd31
2 changed files with 4 additions and 20 deletions

20
CHANGES
View File

@ -1,17 +1,5 @@
Release 2.4.3 (in development) Release 2.4.3 (released Feb 22, 2020)
============================== =====================================
Dependencies
------------
Incompatible changes
--------------------
Deprecated
----------
Features added
--------------
Bugs fixed Bugs fixed
---------- ----------
@ -23,10 +11,6 @@ Bugs fixed
* #6244, #6387: html search: Search breaks/hangs when built with dirhtml builder * #6244, #6387: html search: Search breaks/hangs when built with dirhtml builder
* #7195: todo: emit doctree-resolved event with non-document node incorrectly * #7195: todo: emit doctree-resolved event with non-document node incorrectly
Testing
--------
Release 2.4.2 (released Feb 19, 2020) Release 2.4.2 (released Feb 19, 2020)
===================================== =====================================

View File

@ -32,7 +32,7 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated", warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io') DeprecationWarning, module='docutils.io')
__version__ = '2.4.3+' __version__ = '2.4.3'
__released__ = '2.4.3' # used when Sphinx builds its own docs __released__ = '2.4.3' # used when Sphinx builds its own docs
#: Version info for better programmatic use. #: Version info for better programmatic use.
@ -43,7 +43,7 @@ __released__ = '2.4.3' # used when Sphinx builds its own docs
#: #:
#: .. versionadded:: 1.2 #: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``. #: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (2, 4, 3, 'beta', 0) version_info = (2, 4, 3, 'final', 0)
package_dir = path.abspath(path.dirname(__file__)) package_dir = path.abspath(path.dirname(__file__))