Skip to content

Commit 3817aef

Browse files
committed
Bump for release
1 parent 9a0d930 commit 3817aef

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

NEWS.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@
99
1010
.. towncrier release notes start
1111
12+
23.0.1 (2023-02-17)
13+
===================
14+
15+
Features
16+
--------
17+
18+
- Ignore PIP_REQUIRE_VIRTUALENV for ``pip index`` (`#11671 <https://github.com/pypa/pip/issues/11671>`_)
19+
- Implement ``--break-system-packages`` to permit installing packages into
20+
``EXTERNALLY-MANAGED`` Python installations. (`#11780 <https://github.com/pypa/pip/issues/11780>`_)
21+
22+
Bug Fixes
23+
---------
24+
25+
- Improve handling of isolated build environments on platforms that
26+
customize the Python's installation schemes, such as Debian and
27+
Homebrew. (`#11740 <https://github.com/pypa/pip/issues/11740>`_)
28+
- Do not crash in presence of misformatted hash field in ``direct_url.json``. (`#11773 <https://github.com/pypa/pip/issues/11773>`_)
29+
30+
1231
23.0 (2023-01-30)
1332
=================
1433

news/11671.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/11740.bugfix.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

news/11773.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/11780.feature.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/pip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Optional
22

3-
__version__ = "23.0"
3+
__version__ = "23.0.1"
44

55

66
def main(args: Optional[List[str]] = None) -> int:

0 commit comments

Comments
 (0)