From 06570eb41d6681a537bc561aa1a670dfb6dd2c3a Mon Sep 17 00:00:00 2001 From: John Sirois Date: Sun, 12 Feb 2023 11:21:48 -0800 Subject: [PATCH] Prepare the 2.1.122 release. (#2055) Closes #2040 --- CHANGES.rst | 18 ++++++++++++++++++ pex/version.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 052808652..869877089 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,24 @@ Release Notes ============= +2.1.122 +------- + +This release fixes posix file locks used by Pex internally and enhances +lock creation to support locking sdist-only C extension projects that +do not build on the current platform. Pex is also updated to support +`--pip-version 22.3.1` and `--pip-version 23.0`, bringing it up to date +with the latest Pip's available. + +* Support the latest Pip releases: 22.3.1 & 23.0 (#2056) + `PR #2053 `_ + +* Lock sdists with ``prepare-metadata-for-build-wheel``. (#2053) + `PR #2053 `_ + +* Fix ``execute_parallel`` "leaking" a thread. (#2052) + `PR #2052 `_ + 2.1.121 ------- diff --git a/pex/version.py b/pex/version.py index 2513fd6e8..c30e2a6bb 100644 --- a/pex/version.py +++ b/pex/version.py @@ -1,4 +1,4 @@ # Copyright 2015 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = "2.1.121" +__version__ = "2.1.122"