Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2022-06-16 20:17:08 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2022-06-16 20:17:08 +0300
commit907d27dc6506c542c11a7dd16b560eb4be7da5fc (patch)
tree9dcdff9bcf1f9b636c03cbdb7feb9df58910294f
parented6970311349e54ceebe24ede255378fcd9d94e5 (diff)
Bump to 5.0.2 finalv5.0.2
-rw-r--r--CHANGES16
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 16 deletions
diff --git a/CHANGES b/CHANGES
index a58306280..d2d98db75 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 113dc8bfe..1fb971405 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -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__))