Skip to content

Commit c53d88c

Browse files
committed
Bump for release
1 parent 4417e7f commit c53d88c

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-9
lines changed

NEWS.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,26 @@
99
1010
.. towncrier release notes start
1111
12+
21.1.1 (2021-04-30)
13+
===================
14+
15+
Deprecations and Removals
16+
-------------------------
17+
18+
- Temporarily set the new "Value for ... does not match" ___location warnings level
19+
to *DEBUG*, to hide them from casual users. This prepares pip 21.1 for CPython
20+
inclusion, while pip maintainers digest the first intake of ___location mismatch
21+
issues for the ``distutils``-``sysconfig`` trasition. (`#9912 <https://github.com/pypa/pip/issues/9912>`_)
22+
23+
Bug Fixes
24+
---------
25+
26+
- This change fixes a bug on Python <=3.6.1 with a Typing feature added in 3.6.2 (`#9831 <https://github.com/pypa/pip/issues/9831>`_)
27+
- Fix compatibility between distutils and sysconfig when the project name is unknown outside of a virtual environment. (`#9838 <https://github.com/pypa/pip/issues/9838>`_)
28+
- Fix Python 3.6 compatibility when a PEP 517 build requirement itself needs to be
29+
built in an isolated environment. (`#9878 <https://github.com/pypa/pip/issues/9878>`_)
30+
31+
1232
21.1 (2021-04-24)
1333
=================
1434

news/9831.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/9838.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/9878.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/9912.removal.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/pip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Optional
22

3-
__version__ = "21.2.dev0"
3+
__version__ = "21.1.1"
44

55

66
def main(args=None):

0 commit comments

Comments
 (0)