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"