diff --git a/NEWS.rst b/NEWS.rst index 9e139692fb1..86d3ec64b65 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -9,6 +9,20 @@ .. towncrier release notes start +22.2.1 (2022-07-27) +=================== + +Bug Fixes +--------- + +- Send the pip upgrade prompt to stderr. (`#11282 `_) +- Ensure that things work correctly in environments where setuptools-injected + ``distutils`` is available by default. This is done by cooperating with + setuptools' injection logic to ensure that pip uses the ``distutils`` from the + Python standard library instead. (`#11298 `_) +- Clarify that ``pip cache``'s wheels-related output is about locally built wheels only. (`#11300 `_) + + 22.2 (2022-07-21) ================= diff --git a/news/11282.bugfix.rst b/news/11282.bugfix.rst deleted file mode 100644 index 53f1fde86fa..00000000000 --- a/news/11282.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Send the pip upgrade prompt to stderr. diff --git a/news/11298.bugfix.rst b/news/11298.bugfix.rst deleted file mode 100644 index 1f52404f3c7..00000000000 --- a/news/11298.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Ensure that things work correctly in environments where setuptools-injected -``distutils`` is available by default. This is done by cooperating with -setuptools' injection logic to ensure that pip uses the ``distutils`` from the -Python standard library instead. diff --git a/news/11300.bugfix.rst b/news/11300.bugfix.rst deleted file mode 100644 index f72f7ee9f4a..00000000000 --- a/news/11300.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Clarify that ``pip cache``'s wheels-related output is about locally built wheels only. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index a40148f008f..2451926bc52 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1,6 +1,6 @@ from typing import List, Optional -__version__ = "22.3.dev0" +__version__ = "22.2.1" def main(args: Optional[List[str]] = None) -> int: