Bump for release

This commit is contained in:
Paul Moore 2021-01-30 12:10:04 +00:00
parent a085068760
commit 22c6efd9cf
5 changed files with 18 additions and 6 deletions

View File

@ -1,3 +1,20 @@
21.0.1 (2021-01-30)
===================
Bug Fixes
---------
- commands: debug: Use packaging.version.parse to compare between versions. (`#9461 <https://github.com/pypa/pip/issues/9461>`_)
- New resolver: Download and prepare a distribution only at the last possible
moment to avoid unnecessary network access when the same version is already
installed locally. (`#9516 <https://github.com/pypa/pip/issues/9516>`_)
Vendored Libraries
------------------
- Upgrade packaging to 20.9
21.0 (2021-01-23)
=================

View File

@ -1 +0,0 @@
commands: debug: Use packaging.version.parse to compare between versions.

View File

@ -1,3 +0,0 @@
New resolver: Download and prepare a distribution only at the last possible
moment to avoid unnecessary network access when the same version is already
installed locally.

View File

@ -1 +0,0 @@
Upgrade packaging to 20.9

View File

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