Bump for release

This commit is contained in:
Stéphane Bidoul 2023-10-21 12:57:31 +02:00
parent 5e7cc16c3b
commit 5364f26f96
4 changed files with 11 additions and 3 deletions

View File

@ -9,6 +9,16 @@
.. towncrier release notes start
23.3.1 (2023-10-21)
===================
Bug Fixes
---------
- Handle a timezone indicator of Z when parsing dates in the self check. (`#12338 <https://github.com/pypa/pip/issues/12338>`_)
- Fix bug where installing the same package at the same time with multiple pip processes could fail. (`#12361 <https://github.com/pypa/pip/issues/12361>`_)
23.3 (2023-10-15)
=================

View File

@ -1 +0,0 @@
Handle a timezone indicator of Z when parsing dates in the self check.

View File

@ -1 +0,0 @@
Fix bug where installing the same package at the same time with multiple pip processes could fail.

View File

@ -1,6 +1,6 @@
from typing import List, Optional
__version__ = "24.0.dev0"
__version__ = "23.3.1"
def main(args: Optional[List[str]] = None) -> int: