Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 24.1b2 #12763

Merged
merged 3 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ Florian Briand
Florian Rathgeber
Francesco
Francesco Montesano
Fredrik Orderud
Frost Ming
Gabriel Curio
Gabriel de Perthuis
Expand Down Expand Up @@ -511,6 +512,7 @@ Miro Hrončok
Monica Baluna
montefra
Monty Taylor
mrKazzila
Muha Ajjan
Nadav Wexler
Nahuel Ambrosini
Expand Down Expand Up @@ -665,6 +667,7 @@ Shantanu
shenxianpeng
shireenrao
Shivansh-007
Shixian Sheng
Shlomi Fish
Shovan Maity
Simeon Visser
Expand Down
27 changes: 27 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,33 @@

.. towncrier release notes start

24.1b2 (2024-06-12)
===================

Features
--------

pradyunsg marked this conversation as resolved.
Show resolved Hide resolved
- Report informative messages about invalid requirements. (`#12713 <https://github.com/pypa/pip/issues/12713>`_)

Bug Fixes
---------

- Eagerly import the self version check logic to avoid crashes while upgrading or downgrading pip at the same time. (`#12675 <https://github.com/pypa/pip/issues/12675>`_)
- Accommodate for mismatches between different sources of truth for extra names, for packages generated by ``setuptools``. (`#12688 <https://github.com/pypa/pip/issues/12688>`_)
- Accommodate for development versions of CPython ending in ``+`` in the version string. (`#12691 <https://github.com/pypa/pip/issues/12691>`_)

Vendored Libraries
------------------

- Upgrade packaging to 24.1
pradyunsg marked this conversation as resolved.
Show resolved Hide resolved
- Upgrade requests to 2.32.0
- Remove vendored colorama
- Remove vendored six
- Remove vendored webencodings
- Remove vendored charset_normalizer

``requests`` provides optional character detection support on some APIs when processing ambiguous bytes. This isn't relevant for pip to function and we're able to remove it due to recent upstream changes.

24.1b1 (2024-05-06)
===================

Expand Down
2 changes: 0 additions & 2 deletions news/12675.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12688.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12702.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/12713.feature.rst

This file was deleted.

Empty file.
5 changes: 0 additions & 5 deletions news/charset_normalizer.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/packaging.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/requests.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/six.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/webencodings.vendor.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/pip/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import List, Optional

__version__ = "24.1.dev1"
__version__ = "24.1.dev2"


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