summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzu-ping Chung <uranusjr@gmail.com>2021-07-31 15:23:00 +0800
committerTzu-ping Chung <uranusjr@gmail.com>2021-07-31 15:23:00 +0800
commitf7d912a21902d11448d8fb19cbb84ba1854bcdc4 (patch)
tree972c5efda8e07d0c8d66d0c789ecd36c37c8d786
parentc7f3f197685d074855cfcd8e92234e7b93af3d3f (diff)
downloadpip-21.2.2.tar.gz
Bump for release21.2.2
-rw-r--r--NEWS.rst13
-rw-r--r--news/10233.bugfix.rst3
-rw-r--r--src/pip/__init__.py2
3 files changed, 14 insertions, 4 deletions
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 <https://github.com/pypa/pip/issues/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: