summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES19
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 19 deletions
diff --git a/CHANGES b/CHANGES
index 0e8a504b1..d9fe18baf 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,5 @@
-Release 5.0.1 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
-
-Features added
---------------
+Release 5.0.1 (released Jun 03, 2022)
+=====================================
Bugs fixed
----------
@@ -22,9 +10,6 @@ Bugs fixed
docutils-0.18
* #10495: IndexError is raised for a :rst:role:`kbd` role having a separator
-Testing
---------
-
Release 5.0.0 (released May 30, 2022)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index e947380bd..363821209 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.1+'
+__version__ = '5.0.1'
__released__ = '5.0.1' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@@ -32,7 +32,7 @@ __released__ = '5.0.1' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (5, 0, 1, 'beta', 0)
+version_info = (5, 0, 1, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))