Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Aug 4, 2020
1 parent 02ad77d commit fa2714f
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 13 deletions.
28 changes: 28 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,34 @@
.. towncrier release notes start
20.2.1 (2020-08-04)
===================

Features
--------

- Ignore require-virtualenv in ``pip list`` (`#8603 <https://github.com/pypa/pip/issues/8603>`_)

Bug Fixes
---------

- Correctly find already-installed distributions with dot (``.``) in the name
and uninstall them when needed. (`#8645 <https://github.com/pypa/pip/issues/8645>`_)
- Trace a better error message on installation failure due to invalid ``.data``
files in wheels. (`#8654 <https://github.com/pypa/pip/issues/8654>`_)
- Fix SVN version detection for alternative SVN distributions. (`#8665 <https://github.com/pypa/pip/issues/8665>`_)
- New resolver: Correctly include the base package when specified with extras
in ``--no-deps`` mode. (`#8677 <https://github.com/pypa/pip/issues/8677>`_)
- Use UTF-8 to handle ZIP archive entries on Python 2 according to PEP 427, so
non-ASCII paths can be resolved as expected. (`#8684 <https://github.com/pypa/pip/issues/8684>`_)

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

- Add details on old resolver deprecation and removal to migration documentation. (`#8371 <https://github.com/pypa/pip/issues/8371>`_)
- Fix feature flag name in docs. (`#8660 <https://github.com/pypa/pip/issues/8660>`_)


20.2 (2020-07-29)
=================

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

This file was deleted.

1 change: 0 additions & 1 deletion news/8603.feature

This file was deleted.

2 changes: 0 additions & 2 deletions news/8645.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions news/8654.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/8660.doc

This file was deleted.

1 change: 0 additions & 1 deletion news/8665.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions news/8677.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions news/8684.bugfix

This file was deleted.

Empty file.
Empty file.
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__ = "20.2"
__version__ = "20.2.1"


def main(args=None):
Expand Down

0 comments on commit fa2714f

Please sign in to comment.