diff --git a/NEWS.rst b/NEWS.rst index 4f496273c..26d00a3f1 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -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 `_) +- Fix bug where installing the same package at the same time with multiple pip processes could fail. (`#12361 `_) + + 23.3 (2023-10-15) ================= diff --git a/news/12338.bugfix.rst b/news/12338.bugfix.rst deleted file mode 100644 index cd9a8c10b..000000000 --- a/news/12338.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Handle a timezone indicator of Z when parsing dates in the self check. diff --git a/news/12361.bugfix.rst b/news/12361.bugfix.rst deleted file mode 100644 index 59575e80b..000000000 --- a/news/12361.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix bug where installing the same package at the same time with multiple pip processes could fail. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 46e560149..f1263cdc1 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -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: