summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES13
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 13 deletions
diff --git a/CHANGES b/CHANGES
index 78c481663..ef875beac 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 016e84c27..57ad7242b 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -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__))