Bump to 4.0.2 final

This commit is contained in:
Takeshi KOMIYA
2021-05-20 21:57:27 +09:00
parent c44140b4e3
commit a55816deb5
2 changed files with 4 additions and 13 deletions

13
CHANGES
View File

@@ -1,5 +1,5 @@
Release 4.0.2 (in development)
==============================
Release 4.0.2 (released May 20, 2021)
=====================================
Dependencies
------------
@@ -13,12 +13,6 @@ Incompatible changes
* #9217: manpage: Stop creating a section directory on build manpage by default
(see :confval:`man_make_section_directory`)
Deprecated
----------
Features added
--------------
Bugs fixed
----------
@@ -26,9 +20,6 @@ Bugs fixed
* #9240: Unknown node error for pending_xref_condition is raised if an extension
that does not support the node installs a missing-reference handler
Testing
--------
Release 4.0.1 (released May 11, 2021)
=====================================

View File

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