diff --git a/.binder/requirements.txt b/.binder/requirements.txt
index db5dbe9c300d3..bb910dffea3f9 100644
--- a/.binder/requirements.txt
+++ b/.binder/requirements.txt
@@ -5,5 +5,5 @@ scikit-image==0.16.2
pandas==0.25.3
sphinx-gallery==0.5.0
# Need to update the scikit-learn version on each 0.22 minor release
-scikit-learn==0.22.2
+scikit-learn==0.22.2.post1
diff --git a/doc/conf.py b/doc/conf.py
index e3ccf62c2166e..b7eb635b15f40 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -87,10 +87,14 @@
#
# The short X.Y version.
import sklearn
-version = parse(sklearn.__version__).base_version
-version = ".".join(version.split(".")[:2])
+parsed_version = parse(sklearn.__version__)
+version = ".".join(parsed_version.base_version.split(".")[:2])
# The full version, including alpha/beta/rc tags.
-release = sklearn.__version__
+# Removes post from release name
+if parsed_version.is_postrelease:
+ release = parsed_version.base_version
+else:
+ release = sklearn.__version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/doc/templates/index.html b/doc/templates/index.html
index 1cf74b55f12a7..55da2d12ed530 100644
--- a/doc/templates/index.html
+++ b/doc/templates/index.html
@@ -156,7 +156,7 @@
News
On-going development:
What's new (Changelog)
- February 2020. scikit-learn 0.22.2 is available for download (Changelog).
+ March 2020. scikit-learn 0.22.2 is available for download (Changelog).
January 2020. scikit-learn 0.22.1 is available for download (Changelog).
December 2019. scikit-learn 0.22 is available for download (Changelog).
diff --git a/doc/whats_new/v0.22.rst b/doc/whats_new/v0.22.rst
index 69afe2494463b..fa8593dd07ea4 100644
--- a/doc/whats_new/v0.22.rst
+++ b/doc/whats_new/v0.22.rst
@@ -4,10 +4,15 @@
.. _changes_0_22_2:
-Version 0.22.2
-==============
+Version 0.22.2.post1
+====================
+
+**March 3 2020**
-**February 28 2020**
+The 0.22.2.post1 release includes a packaging fix for the source distribution
+but the content of the packages is otherwise identical to the content of the
+wheels with the 0.22.2 version (without the .post1 suffix). Both contain the
+following changes.
Changelog
---------
@@ -33,7 +38,7 @@ Changelog
:class:`metrics.PrecisionRecallDisplay` instead of the parameter `name`. It
results in a different plot when calling
:meth:`metrics.PrecisionRecallDisplay.plot` for the subsequent times.
- :pr:`#16505` by :user:`Guillaume Lemaitre `.
+ :pr:`16505` by :user:`Guillaume Lemaitre `.
:mod:`sklearn.neighbors`
..............................
diff --git a/sklearn/__init__.py b/sklearn/__init__.py
index 9edbd2723ffed..d3b9f03f626c7 100644
--- a/sklearn/__init__.py
+++ b/sklearn/__init__.py
@@ -40,7 +40,7 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#
-__version__ = '0.22.2'
+__version__ = '0.22.2.post1'
# On OSX, we can get a runtime error due to multiple OpenMP libraries loaded