diff --git a/CHANGES.rst b/CHANGES.rst index 3cd23ca05..3a834faa3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,25 @@ Release Notes ============= +2.1.19 +------ + +This release adds the ``--python-path`` option, which allows controlling the +interpreter search paths when building a PEX. + +The release also removes ``--use-first-matching-interpreter``, which was a misfeature. If you want to use +fewer interpreters when building a PEX, use more precise values for ``--interpreter-constraint`` and/or +``--python-path``, or use ``--python`` or ``--platform``. + +* Add ``--python-path`` to change interpreter search paths when building a PEX. (#1077) + `PR #1077 `_ + +* Remove ``--use-first-matching-interpreter`` misfeature. (#1076) + `PR #1076 `_ + +* Encapsulate ``--inherit-path`` handling. (#1072) + `PR #1072 `_ + 2.1.18 ------ diff --git a/pex/version.py b/pex/version.py index 418183755..7e24b1227 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.18" +__version__ = "2.1.19"