diff --git a/CHANGES.md b/CHANGES.md index 546b4671b..042b459b2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,16 @@ # Release Notes +## 2.15.0 + +This release enhances the REPL your PEX drops into when it either +doesn't have an entry point or you force interpreter mode with the +`PEX_INTERPRETER` environment variable. There is now clear indication +you are running in a PEX hermetic environment and a `pex_info` command +added to the REPL that you can use to find out more details about the +current PEX environment. + +* Add PEX info to the PEX repl. (#2496) + ## 2.14.1 This release fixes `--inject-env` when used in combination with a diff --git a/pex/version.py b/pex/version.py index 554c4e86b..780e42e28 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.14.1" +__version__ = "2.15.0"