summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzu-ping Chung <uranusjr@gmail.com>2021-08-06 18:26:52 +0800
committerTzu-ping Chung <uranusjr@gmail.com>2021-08-06 18:26:52 +0800
commitc2c92c7e8c05bca02cac793100a4bf43d0a1ddda (patch)
tree0c59444c6ef5b1e613e5b35c5a4e4aafa293eeb5
parent516fc4915a173b28acd276786f53edd1a6969319 (diff)
downloadpip-21.2.3.tar.gz
Bump for release21.2.3
-rw-r--r--NEWS.rst12
-rw-r--r--news/10252.bugfix.rst2
-rw-r--r--news/2A2E5A1E-F014-40E9-B0EF-0D9C4686358F.trivial.rst0
-rw-r--r--src/pip/__init__.py2
4 files changed, 13 insertions, 3 deletions
diff --git a/NEWS.rst b/NEWS.rst
index e6f86e71a..7791f6327 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1,3 +1,15 @@
+21.2.3 (2021-08-06)
+===================
+
+
+
+Bug Fixes
+---------
+
+- Modify the ``sysconfig.get_preferred_scheme`` function check to be
+ compatible with CPython 3.10’s alphareleases. (`#10252 <https://github.com/pypa/pip/issues/10252>`_)
+
+
21.2.2 (2021-07-31)
===================
diff --git a/news/10252.bugfix.rst b/news/10252.bugfix.rst
deleted file mode 100644
index ebeeefd25..000000000
--- a/news/10252.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Modify the ``sysconfig.get_preferred_scheme`` function check to be
-compatible with CPython 3.10’s alphareleases.
diff --git a/news/2A2E5A1E-F014-40E9-B0EF-0D9C4686358F.trivial.rst b/news/2A2E5A1E-F014-40E9-B0EF-0D9C4686358F.trivial.rst
deleted file mode 100644
index e69de29bb..000000000
--- a/news/2A2E5A1E-F014-40E9-B0EF-0D9C4686358F.trivial.rst
+++ /dev/null
diff --git a/src/pip/__init__.py b/src/pip/__init__.py
index 6794ac7a3..3d8dd5c79 100644
--- a/src/pip/__init__.py
+++ b/src/pip/__init__.py
@@ -1,6 +1,6 @@
from typing import List, Optional
-__version__ = "21.2.2"
+__version__ = "21.2.3"
def main(args: Optional[List[str]] = None) -> int: