Skip to content

Commit 1d41abb

Browse files
authored
Merge pull request #11102 from pradyunsg/release/22.1
2 parents c86f9f1 + 88d565c commit 1d41abb

File tree

7 files changed

+21
-8
lines changed

7 files changed

+21
-8
lines changed

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ Masklinn
402402
Matej Stuchlik
403403
Mathew Jennings
404404
Mathieu Bridon
405+
Mathieu Kniewallner
405406
Matt Bacchi
406407
Matt Good
407408
Matt Maker

NEWS.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@
99
1010
.. towncrier release notes start
1111
12+
22.1 (2022-05-11)
13+
=================
14+
15+
Process
16+
-------
17+
18+
- Enable the ``importlib.metadata`` metadata implementation by default on
19+
Python 3.11 (or later). The environment variable ``_PIP_USE_IMPORTLIB_METADATA``
20+
can still be used to enable the implementation on 3.10 and earlier, or disable
21+
it on 3.11 (by setting it to ``0`` or ``false``).
22+
23+
Bug Fixes
24+
---------
25+
26+
- Revert `#9243 <https://github.com/pypa/pip/issues/9243>`_ since it introduced a regression in certain edge cases. (`#10962 <https://github.com/pypa/pip/issues/10962>`_)
27+
- Fix missing ``REQUESTED`` metadata when using URL constraints. (`#11079 <https://github.com/pypa/pip/issues/11079>`_)
28+
- ``pip config`` now normalizes names by converting underscores into dashes. (`#9330 <https://github.com/pypa/pip/issues/9330>`_)
29+
30+
1231
22.1b1 (2022-04-30)
1332
===================
1433

news/10962.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/11044.process.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

news/11079.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/9330.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/pip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Optional
22

3-
__version__ = "22.1.dev1"
3+
__version__ = "22.2.dev0"
44

55

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

0 commit comments

Comments
 (0)