Skip to content

Commit ca2d9f4

Browse files
committed
Bump for release
1 parent f20ab57 commit ca2d9f4

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

NEWS.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@
99
1010
.. towncrier release notes start
1111
12+
22.1.1 (2022-05-20)
13+
===================
14+
15+
Bug Fixes
16+
---------
17+
18+
- Properly filter out optional dependencies (i.e. extras) when checking build environment distributions. (`#11112 <https://github.com/pypa/pip/issues/11112>`_)
19+
- Change the build environment dependency checking to be opt-in. (`#11116 <https://github.com/pypa/pip/issues/11116>`_)
20+
- Allow using a pre-release version to satisfy a build requirement. This helps
21+
manually populated build environments to more accurately detect build-time
22+
requirement conflicts. (`#11123 <https://github.com/pypa/pip/issues/11123>`_)
23+
24+
1225
22.1 (2022-05-11)
1326
=================
1427

news/11112.bugfix.rst

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

news/11116.bugfix.rst

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

news/11123.bugfix.rst

Lines changed: 0 additions & 3 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__ = "22.2.dev0"
3+
__version__ = "22.1.1"
44

55

66
def main(args: Optional[List[str]] = None) -> int:

0 commit comments

Comments
 (0)