1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Bump for release

This commit is contained in:
Pradyun Gedam 2022-05-31 16:35:52 +05:30
parent 70c9b36582
commit 5f12c59f69
No known key found for this signature in database
GPG key ID: FF99710C4332258E
4 changed files with 11 additions and 3 deletions

View file

@ -9,6 +9,16 @@
.. towncrier release notes start
22.1.2 (2022-05-31)
===================
Bug Fixes
---------
- Revert `#10979 <https://github.com/pypa/pip/issues/10979>`_ since it introduced a regression in certain edge cases. (`#10979 <https://github.com/pypa/pip/issues/10979>`_)
- Fix an incorrect assertion in the logging logic, that prevented the upgrade prompt from being presented. (`#11136 <https://github.com/pypa/pip/issues/11136>`_)
22.1.1 (2022-05-20)
===================

View file

@ -1 +0,0 @@
Revert `#10979 <https://github.com/pypa/pip/issues/10979>`_ since it introduced a regression in certain edge cases.

View file

@ -1 +0,0 @@
Fix an incorrect assertion in the logging logic, that prevented the upgrade prompt from being presented.

View file

@ -1,6 +1,6 @@
from typing import List, Optional
__version__ = "22.1.1"
__version__ = "22.1.2"
def main(args: Optional[List[str]] = None) -> int: