Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Jun 12, 2024
1 parent 9bf6b4a commit ece2255
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 15 deletions.
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.1b2"


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

0 comments on commit ece2255

Please sign in to comment.