Skip to content

Commit

Permalink
Merge pull request #12763 from pradyunsg/release/24.1.beta2
Browse files Browse the repository at this point in the history
Release 24.1b2
  • Loading branch information
pradyunsg authored Jun 12, 2024
2 parents ccd7be1 + 17c938a commit 71b1688
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 15 deletions.
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
--------

- 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
- 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

0 comments on commit 71b1688

Please sign in to comment.