Bump for release

This commit is contained in:
Pradyun Gedam 2020-05-19 13:12:13 +05:30
parent bfe6336035
commit 8356bc5161
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
6 changed files with 19 additions and 7 deletions

View File

@ -7,6 +7,24 @@
.. towncrier release notes start
20.1.1 (2020-05-19)
===================
Deprecations and Removals
-------------------------
- 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>`_)
- Drop parallelization from ``pip list --outdated``. (`#8167 <https://github.com/pypa/pip/issues/8167>`_)
Bug Fixes
---------
- 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>`_)
20.1 (2020-04-28)
=================

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

@ -4,7 +4,7 @@ if MYPY_CHECK_RUNNING:
from typing import List, Optional
__version__ = "20.1"
__version__ = "20.1.1"
def main(args=None):