Skip to content

Commit 1463081

Browse files
committed
Bump for release
1 parent 22fd64a commit 1463081

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

NEWS.rst

+11
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@
99
1010
.. towncrier release notes start
1111
12+
22.3.1 (2022-11-05)
13+
===================
14+
15+
Bug Fixes
16+
---------
17+
18+
- Fix entry point generation of ``pip.X``, ``pipX.Y``, and ``easy_install-X.Y``
19+
to correctly account for multi-digit Python version segments (e.g. the "11"
20+
part of 3.11). (`#11547 <https://github.com/pypa/pip/issues/11547>`_)
21+
22+
1223
22.3 (2022-10-15)
1324
=================
1425

news/11547.bugfix.rst

-3
This file was deleted.

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__ = "22.3"
3+
__version__ = "22.3.1"
44

55

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

0 commit comments

Comments
 (0)