Skip to content

Commit

Permalink
Revert "Bump for release"
Browse files Browse the repository at this point in the history
This reverts commit 91f43f1.
  • Loading branch information
pfmoore committed Jan 23, 2021
1 parent e01c7d7 commit f030515
Show file tree
Hide file tree
Showing 49 changed files with 23 additions and 47 deletions.
46 changes: 0 additions & 46 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,49 +1,3 @@
21.0 (2021-01-23)
=================

Deprecations and Removals
-------------------------

- Drop support for Python 2. (`#6148 <https:/pypa/pip/issues/6148>`_)
- Remove support for legacy wheel cache entries that were created with pip
versions older than 20.0. (`#7502 <https:/pypa/pip/issues/7502>`_)
- Remove support for VCS pseudo URLs editable requirements. It was emitting
deprecation warning since version 20.0. (`#7554 <https:/pypa/pip/issues/7554>`_)
- Modernise the codebase after Python 2. (`#8802 <https:/pypa/pip/issues/8802>`_)
- Drop support for Python 3.5. (`#9189 <https:/pypa/pip/issues/9189>`_)
- Remove the VCS export feature that was used only with editable VCS
requirements and had correctness issues. (`#9338 <https:/pypa/pip/issues/9338>`_)

Features
--------

- Add ``--ignore-requires-python`` support to pip download. (`#1884 <https:/pypa/pip/issues/1884>`_)
- New resolver: Error message shown when a wheel contains inconsistent metadata
is made more helpful by including both values from the file name and internal
metadata. (`#9186 <https:/pypa/pip/issues/9186>`_)

Bug Fixes
---------

- Fix a regression that made ``pip wheel`` do a VCS export instead of a VCS clone
for editable requirements. This broke VCS requirements that need the VCS
information to build correctly. (`#9273 <https:/pypa/pip/issues/9273>`_)
- Fix ``pip download`` of editable VCS requirements that need VCS information
to build correctly. (`#9337 <https:/pypa/pip/issues/9337>`_)

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

- Upgrade msgpack to 1.0.2.
- Upgrade requests to 2.25.1.

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

- Render the unreleased pip version change notes on the news page in docs. (`#9172 <https:/pypa/pip/issues/9172>`_)
- Fix broken email link in docs feedback banners. (`#9343 <https:/pypa/pip/issues/9343>`_)


.. note
You should *NOT* be adding new change log entries to this file, this
Expand Down
Empty file.
Empty file.
1 change: 1 addition & 0 deletions news/1884.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add ``--ignore-requires-python`` support to pip download.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions news/6148.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop support for Python 2.
Empty file.
2 changes: 2 additions & 0 deletions news/7502.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Remove support for legacy wheel cache entries that were created with pip
versions older than 20.0.
2 changes: 2 additions & 0 deletions news/7554.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Remove support for VCS pseudo URLs editable requirements. It was emitting
deprecation warning since version 20.0.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions news/8802.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Modernise the codebase after Python 2.
Empty file.
1 change: 1 addition & 0 deletions news/9172.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Render the unreleased pip version change notes on the news page in docs.
3 changes: 3 additions & 0 deletions news/9186.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
New resolver: Error message shown when a wheel contains inconsistent metadata
is made more helpful by including both values from the file name and internal
metadata.
1 change: 1 addition & 0 deletions news/9189.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop support for Python 3.5.
3 changes: 3 additions & 0 deletions news/9273.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Fix a regression that made ``pip wheel`` do a VCS export instead of a VCS clone
for editable requirements. This broke VCS requirements that need the VCS
information to build correctly.
2 changes: 2 additions & 0 deletions news/9337.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix ``pip download`` of editable VCS requirements that need VCS information
to build correctly.
2 changes: 2 additions & 0 deletions news/9338.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Remove the VCS export feature that was used only with editable VCS
requirements and had correctness issues.
1 change: 1 addition & 0 deletions news/9343.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix broken email link in docs feedback banners.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions news/msgpack.vendor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade msgpack to 1.0.2.
1 change: 1 addition & 0 deletions news/requests.vendor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade requests to 2.25.1.
2 changes: 1 addition & 1 deletion src/pip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import List, Optional


__version__ = "21.0"
__version__ = "21.0.dev0"


def main(args=None):
Expand Down

0 comments on commit f030515

Please sign in to comment.