From 61bdbe0d66ad472372f67c7bce05629027bdfc2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Wed, 27 Jul 2022 19:18:11 +0200 Subject: [PATCH 1/2] Bump for release --- NEWS.rst | 14 ++++++++++++++ news/11282.bugfix.rst | 1 - news/11298.bugfix.rst | 4 ---- news/11300.bugfix.rst | 1 - src/pip/__init__.py | 2 +- 5 files changed, 15 insertions(+), 7 deletions(-) delete mode 100644 news/11282.bugfix.rst delete mode 100644 news/11298.bugfix.rst delete mode 100644 news/11300.bugfix.rst 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: From c88036882242578f464cef159ea3205c350a929a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Wed, 27 Jul 2022 19:18:15 +0200 Subject: [PATCH 2/2] Bump for development --- src/pip/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 2451926bc52..a40148f008f 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1,6 +1,6 @@ from typing import List, Optional -__version__ = "22.2.1" +__version__ = "22.3.dev0" def main(args: Optional[List[str]] = None) -> int: