diff --git a/CHANGES.md b/CHANGES.md index b9ef305a6..82df56737 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,15 @@ # Release Notes +## 2.26.0 + +This release adds Pex `--scie {eager,lazy}` support for Linux armv7l. + +In addition, a spurious warning when using `PEX_PYTHON=pythonX.Y` +against a venv PEX has been fixed. + +* Added support for armv7l (#2620) +* Fix incorrect regex for `PEX_PYTHON` precision warning (#2622) + ## 2.25.2 This release fixes the `--elide-unused-requires-dist` lock option once diff --git a/pex/version.py b/pex/version.py index 00c0c1246..563c2dd85 100644 --- a/pex/version.py +++ b/pex/version.py @@ -1,4 +1,4 @@ # Copyright 2015 Pex project contributors. # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = "2.25.2" +__version__ = "2.26.0"