Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed May 11, 2022
1 parent bd54382 commit 3c95332
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
19 changes: 19 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,25 @@
.. towncrier release notes start
22.1 (2022-05-11)
=================

Process
-------

- Enable the ``importlib.metadata`` metadata implementation by default on
Python 3.11 (or later). The environment variable ``_PIP_USE_IMPORTLIB_METADATA``
can still be used to enable the implementation on 3.10 and earlier, or disable
it on 3.11 (by setting it to ``0`` or ``false``).

Bug Fixes
---------

- 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>`_)
- Fix missing ``REQUESTED`` metadata when using URL constraints. (`#11079 <https://github.com/pypa/pip/issues/11079>`_)
- ``pip config`` now normalizes names by converting underscores into dashes. (`#9330 <https://github.com/pypa/pip/issues/9330>`_)


22.1b1 (2022-04-30)
===================

Expand Down
1 change: 0 additions & 1 deletion news/10962.bugfix.rst

This file was deleted.

4 changes: 0 additions & 4 deletions news/11044.process.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/11079.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/9330.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/pip/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import List, Optional

__version__ = "22.1.dev1"
__version__ = "22.1"


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

0 comments on commit 3c95332

Please sign in to comment.