Bump to 5.0.2 final

This commit is contained in:
Takeshi KOMIYA 2022-06-17 02:17:08 +09:00
parent ed69703113
commit 907d27dc65
2 changed files with 4 additions and 16 deletions

16
CHANGES
View File

@ -1,14 +1,5 @@
Release 5.0.2 (in development)
==============================
Dependencies
------------
Incompatible changes
--------------------
Deprecated
----------
Release 5.0.2 (released Jun 17, 2022)
=====================================
Features added
--------------
@ -27,9 +18,6 @@ Bugs fixed
Patch by Adam Turner.
* #10534: Missing CSS for nav.contents in Docutils 0.18+. Patch by Adam Turner.
Testing
--------
Release 5.0.1 (released Jun 03, 2022)
=====================================

View File

@ -21,7 +21,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated",
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')
__version__ = '5.0.2+'
__version__ = '5.0.2'
__released__ = '5.0.2' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@ -32,7 +32,7 @@ __released__ = '5.0.2' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (5, 0, 2, 'beta', 0)
version_info = (5, 0, 2, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))