Skip to content

Commit bc7c88c

Browse files
committed
Bump for release
1 parent ebd0a52 commit bc7c88c

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Diff for: NEWS.rst

+9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
1010
.. towncrier release notes start
1111
12+
25.0.1 (2025-02-09)
13+
===================
14+
15+
Bug Fixes
16+
---------
17+
18+
- Fix an unsupported type annotation on Python 3.10 and earlier. (`#13181 <https://github.com/pypa/pip/issues/13181>`_)
19+
- Fix a regression where truststore would never be used while installing build dependencies. (`#13186 <https://github.com/pypa/pip/issues/13186>`_)
20+
1221
25.0 (2025-01-26)
1322
=================
1423

Diff for: news/13181.bugfix.rst

-2
This file was deleted.

Diff for: news/13186.bugfix.rst

-1
This file was deleted.

Diff for: src/pip/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Optional
22

3-
__version__ = "25.0"
3+
__version__ = "25.0.1"
44

55

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

0 commit comments

Comments
 (0)