From 907d27dc6506c542c11a7dd16b560eb4be7da5fc Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 17 Jun 2022 02:17:08 +0900 Subject: [PATCH] Bump to 5.0.2 final --- CHANGES | 16 ++-------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/CHANGES b/CHANGES index a5830628092..d2d98db75c8 100644 --- a/CHANGES +++ b/CHANGES @@ -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) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 113dc8bfe89..1fb9714058c 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,7 +21,7 @@ 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 @@ #: #: .. 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__))