Bump for release

This commit is contained in:
Paul Moore 2020-05-21 09:33:43 +01:00
parent 086dc58686
commit 96225c9124
19 changed files with 27 additions and 12 deletions

View File

@ -1,3 +1,29 @@
20.2b1 (2020-05-21)
===================
Deprecations and Removals
-------------------------
- Drop parallelization from ``pip list --outdated``. (`#8167 <https://github.com/pypa/pip/issues/8167>`_)
Bug Fixes
---------
- Correctly treat wheels contenting non-ASCII file contents so they can be
installed on Windows. (`#5712 <https://github.com/pypa/pip/issues/5712>`_)
- Revert building of local directories in place, restoring the pre-20.1
behaviour of copying to a temporary directory. (`#7555 <https://github.com/pypa/pip/issues/7555>`_)
- Prompt the user for password if the keyring backend doesn't return one (`#7998 <https://github.com/pypa/pip/issues/7998>`_)
- Fix metadata permission issues when umask has the executable bit set. (`#8164 <https://github.com/pypa/pip/issues/8164>`_)
- Avoid unnecessary message about the wheel package not being installed
when a wheel would not have been built. Additionally, clarify the message. (`#8178 <https://github.com/pypa/pip/issues/8178>`_)
Improved Documentation
----------------------
- Add GitHub issue template for reporting when the dependency resolver fails (`#8207 <https://github.com/pypa/pip/issues/8207>`_)
.. NOTE: You should *NOT* be adding new change log entries to this file, this
file is managed by towncrier. You *may* edit previous change logs to
fix problems like typo corrections or such.

View File

@ -1,2 +0,0 @@
Correctly treat wheels contenting non-ASCII file contents so they can be
installed on Windows.

View File

@ -1,2 +0,0 @@
Revert building of local directories in place, restoring the pre-20.1
behaviour of copying to a temporary directory.

View File

@ -1 +0,0 @@
Remove "type: ignore" comments from cli subpackage

View File

@ -1 +0,0 @@
Prompt the user for password if the keyring backend doesn't return one

View File

@ -1 +0,0 @@
Fix metadata permission issues when umask has the executable bit set.

View File

@ -1 +0,0 @@
Drop parallelization from ``pip list --outdated``.

View File

@ -1,2 +0,0 @@
Avoid unnecessary message about the wheel package not being installed
when a wheel would not have been built. Additionally, clarify the message.

View File

@ -1 +0,0 @@
Add GitHub issue template for reporting when the dependency resolver fails

View File

@ -4,7 +4,7 @@ if MYPY_CHECK_RUNNING:
from typing import List, Optional
__version__ = "20.2.dev0"
__version__ = "20.2b1"
def main(args=None):