Skip to content

Commit 61bdbe0

Browse files
committed
Bump for release
1 parent fcb0c84 commit 61bdbe0

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

NEWS.rst

+14
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@
99
1010
.. towncrier release notes start
1111
12+
22.2.1 (2022-07-27)
13+
===================
14+
15+
Bug Fixes
16+
---------
17+
18+
- Send the pip upgrade prompt to stderr. (`#11282 <https://github.com/pypa/pip/issues/11282>`_)
19+
- Ensure that things work correctly in environments where setuptools-injected
20+
``distutils`` is available by default. This is done by cooperating with
21+
setuptools' injection logic to ensure that pip uses the ``distutils`` from the
22+
Python standard library instead. (`#11298 <https://github.com/pypa/pip/issues/11298>`_)
23+
- Clarify that ``pip cache``'s wheels-related output is about locally built wheels only. (`#11300 <https://github.com/pypa/pip/issues/11300>`_)
24+
25+
1226
22.2 (2022-07-21)
1327
=================
1428

news/11282.bugfix.rst

-1
This file was deleted.

news/11298.bugfix.rst

-4
This file was deleted.

news/11300.bugfix.rst

-1
This file was deleted.

src/pip/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Optional
22

3-
__version__ = "22.3.dev0"
3+
__version__ = "22.2.1"
44

55

66
def main(args: Optional[List[str]] = None) -> int:

0 commit comments

Comments
 (0)