From f7d912a21902d11448d8fb19cbb84ba1854bcdc4 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Sat, 31 Jul 2021 15:23:00 +0800 Subject: Bump for release --- NEWS.rst | 13 +++++++++++++ news/10233.bugfix.rst | 3 --- src/pip/__init__.py | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) delete mode 100644 news/10233.bugfix.rst diff --git a/NEWS.rst b/NEWS.rst index 2493eba3b..e6f86e71a 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,16 @@ +21.2.2 (2021-07-31) +=================== + + + +Bug Fixes +--------- + +- New resolver: When a package is specified with extras in constraints, and with + extras in non-constraint requirements, the resolver now correctly identifies the + constraint's existence and avoids backtracking. (`#10233 `_) + + 21.2.1 (2021-07-25) =================== diff --git a/news/10233.bugfix.rst b/news/10233.bugfix.rst deleted file mode 100644 index 8578a7dd0..000000000 --- a/news/10233.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -New resolver: When a package is specified with extras in constraints, and with -extras in non-constraint requirements, the resolver now correctly identifies the -constraint's existence and avoids backtracking. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 7b2bc25ff..6794ac7a3 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1,6 +1,6 @@ from typing import List, Optional -__version__ = "21.2.1" +__version__ = "21.2.2" def main(args: Optional[List[str]] = None) -> int: -- cgit v1.2.1