summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Moore <p.f.moore@gmail.com>2023-04-22 10:13:28 +0100
committerPaul Moore <p.f.moore@gmail.com>2023-04-22 10:13:28 +0100
commitee40d71817df8346af3d96051a298db8f22e52f1 (patch)
tree8179474a53b9a92be31531a26fcebfeef2003f12
parentd5a779d96c0460f49da23abe8b4f557ce80b0a70 (diff)
downloadpip-ee40d71817df8346af3d96051a298db8f22e52f1.tar.gz
Bump for release23.1.1
-rw-r--r--NEWS.rst20
-rw-r--r--news/11967.doc.rst2
-rw-r--r--news/11987.bugfix.rst1
-rw-r--r--news/setuptools.vendor.rst1
-rw-r--r--src/pip/__init__.py2
5 files changed, 21 insertions, 5 deletions
diff --git a/NEWS.rst b/NEWS.rst
index da8c8726a..a5c27f34a 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -9,6 +9,26 @@
.. towncrier release notes start
+23.1.1 (2023-04-22)
+===================
+
+Bug Fixes
+---------
+
+- Revert `#11487 <https://github.com/pypa/pip/pull/11487>`_, as it causes issues with virtualenvs created by the Windows Store distribution of Python. (`#11987 <https://github.com/pypa/pip/issues/11987>`_)
+
+Vendored Libraries
+------------------
+
+- Revert pkg_resources (via setuptools) back to 65.6.3
+
+Improved Documentation
+----------------------
+
+- Update documentation to reflect the new behavior of using the cache of locally
+ built wheels in hash-checking mode. (`#11967 <https://github.com/pypa/pip/issues/11967>`_)
+
+
23.1 (2023-04-15)
=================
diff --git a/news/11967.doc.rst b/news/11967.doc.rst
deleted file mode 100644
index 4d9a23b03..000000000
--- a/news/11967.doc.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Update documentation to reflect the new behavior of using the cache of locally
-built wheels in hash-checking mode.
diff --git a/news/11987.bugfix.rst b/news/11987.bugfix.rst
deleted file mode 100644
index de03de640..000000000
--- a/news/11987.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Revert `#11487 <https://github.com/pypa/pip/pull/11487>`_, as it causes issues with virtualenvs created by the Windows Store distribution of Python.
diff --git a/news/setuptools.vendor.rst b/news/setuptools.vendor.rst
deleted file mode 100644
index 2d6480a89..000000000
--- a/news/setuptools.vendor.rst
+++ /dev/null
@@ -1 +0,0 @@
-Revert pkg_resources (via setuptools) back to 65.6.3
diff --git a/src/pip/__init__.py b/src/pip/__init__.py
index 20d8bf56c..b4e13628c 100644
--- a/src/pip/__init__.py
+++ b/src/pip/__init__.py
@@ -1,6 +1,6 @@
from typing import List, Optional
-__version__ = "23.2.dev0"
+__version__ = "23.1.1"
def main(args: Optional[List[str]] = None) -> int: