From f37d82be58d0c288edbb8db7c41376fc6a97c6df Mon Sep 17 00:00:00 2001 From: John Sirois Date: Thu, 2 Nov 2023 20:22:44 -0700 Subject: [PATCH] Prepare the 2.1.149 release. (#2272) Closes #2254 --- CHANGES.md | 10 ++++++++++ pex/version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 84cd183cd..d8ccde54f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,15 @@ # Release Notes +## 2.1.149 + +Fix `--style universal` lock handing of `none` ABI wheels with a +specific Python minor version expressed in their wheel tag. There are +not many of these in the wild, but a user discovered the case of +python-forge 18.6.0 which supplies 1 file on PyPI: +`python_forge-18.6.0-py35-none-any.whl`. + +* Fix universal lock handling of the none ABI. (#2270) + ## 2.1.148 Add support to the Pex for checking if built PEXes are valid Python diff --git a/pex/version.py b/pex/version.py index ae2ef1582..70044c887 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.148" +__version__ = "2.1.149"