Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Jan 30, 2023
1 parent aa94cca commit 368c7b4
Show file tree
Hide file tree
Showing 30 changed files with 58 additions and 38 deletions.
57 changes: 57 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,63 @@
.. towncrier release notes start
23.0 (2023-01-30)
=================

Features
--------

- Change the hashes in the installation report to be a mapping. Emit the
``archive_info.hashes`` dictionary in ``direct_url.json``. (`#11312 <https://github.com/pypa/pip/issues/11312>`_)
- Implement logic to read the ``EXTERNALLY-MANAGED`` file as specified in PEP 668.
This allows a downstream Python distributor to prevent users from using pip to
modify the externally managed environment. (`#11381 <https://github.com/pypa/pip/issues/11381>`_)
- Enable the use of ``keyring`` found on ``PATH``. This allows ``keyring``
installed using ``pipx`` to be used by ``pip``. (`#11589 <https://github.com/pypa/pip/issues/11589>`_)
- The inspect and installation report formats are now declared stabled, and their version
has been bumped from ``0`` to ``1``. (`#11757 <https://github.com/pypa/pip/issues/11757>`_)

Bug Fixes
---------

- Wheel cache behavior is restored to match previous versions, allowing the
cache to find existing entries. (`#11527 <https://github.com/pypa/pip/issues/11527>`_)
- Use the "venv" scheme if available to obtain prefixed lib paths. (`#11598 <https://github.com/pypa/pip/issues/11598>`_)
- Deprecated a historical ambiguity in how ``egg`` fragments in URL-style
requirements are formatted and handled. ``egg`` fragments that do not look
like PEP 508 names now produce a deprecation warning. (`#11617 <https://github.com/pypa/pip/issues/11617>`_)
- Fix scripts path in isolated build environment on Debian. (`#11623 <https://github.com/pypa/pip/issues/11623>`_)
- Make ``pip show`` show the editable location if package is editable (`#11638 <https://github.com/pypa/pip/issues/11638>`_)
- Stop checking that ``wheel`` is present when ``build-system.requires``
is provided without ``build-system.build-backend`` as ``setuptools``
(which we still check for) will inject it anyway. (`#11673 <https://github.com/pypa/pip/issues/11673>`_)
- Fix an issue when an already existing in-memory distribution would cause
exceptions in ``pip install`` (`#11704 <https://github.com/pypa/pip/issues/11704>`_)

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

- Upgrade certifi to 2022.12.7
- Upgrade chardet to 5.1.0
- Upgrade colorama to 0.4.6
- Upgrade distro to 1.8.0
- Remove pep517 from vendored packages
- Upgrade platformdirs to 2.6.2
- Add pyproject-hooks 1.0.0
- Upgrade requests to 2.28.2
- Upgrade rich to 12.6.0
- Upgrade urllib3 to 1.26.14

Improved Documentation
----------------------

- Fixed the description of the option "--install-options" in the documentation (`#10265 <https://github.com/pypa/pip/issues/10265>`_)
- Remove mention that editable installs are necessary for pip freeze to report the VCS
URL. (`#11675 <https://github.com/pypa/pip/issues/11675>`_)
- Clarify that the egg URL fragment is only necessary for editable VCS installs, and
otherwise not necessary anymore. (`#11676 <https://github.com/pypa/pip/issues/11676>`_)


22.3.1 (2022-11-05)
===================

Expand Down
1 change: 0 additions & 1 deletion news/10265.doc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11312.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions news/11381.feature.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11527.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11589.feature.rst

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions news/11617.bugfix.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions news/11673.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11675.doc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11676.doc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11704.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/11757.feature.rst

This file was deleted.

Empty file.
Empty file.
Empty file.
1 change: 0 additions & 1 deletion news/certifi.vendor.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

Empty file.
1 change: 0 additions & 1 deletion news/distro.vendor.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/pyproject-hooks.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/rich.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/urllib3.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__ = "23.0.dev0"
__version__ = "23.0"


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

0 comments on commit 368c7b4

Please sign in to comment.