From 3f67192e76818ecc979214391efe77a5c0f7e4ee Mon Sep 17 00:00:00 2001 From: John Sirois Date: Tue, 28 Feb 2023 21:15:28 -0800 Subject: [PATCH 1/2] Prepare the 2.1.125 release. Closes #2067 --- CHANGES.rst | 11 +++++++++++ pex/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 86acb331a..db2f03e5e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,17 @@ Release Notes ============= +2.1.125 +------- + +This release makes ``--platform`` and ``--complete-platform`` resolves +and locks as permissable as possible. If such a resolve or lock only has +an sdist available for a certain project, that sdist will now be used if +it builds to a wheel compatible with the specified foreign platform(s). + +* Attempt "cross-builds" of sdists for foreign platforms. (#2075) + `PR #2075 `_ + 2.1.124 ------- diff --git a/pex/version.py b/pex/version.py index f87105b1a..cafa484de 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.124" +__version__ = "2.1.125" From 93e9c3d5d62ec4eb5ce447f6fe3716654e7d5d71 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Tue, 28 Feb 2023 23:09:41 -0800 Subject: [PATCH 2/2] Update CHANGES.rst --- CHANGES.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index db2f03e5e..ce3114e28 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,7 @@ Release Notes ------- This release makes ``--platform`` and ``--complete-platform`` resolves -and locks as permissable as possible. If such a resolve or lock only has +and locks as permissive as possible. If such a resolve or lock only has an sdist available for a certain project, that sdist will now be used if it builds to a wheel compatible with the specified foreign platform(s).