diff --git a/CHANGES.rst b/CHANGES.rst index 2103b3e2b..6ad194242 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,30 @@ Release Notes ============= +1.5.2 +----- + +This release brings an exit code fix for pexes run via entrypoint as well as a fix for finding +scripts when building pexes from wheels with dashes in their distribution name. + +* Update PyPI default URL to pypi.org (#610) + `PR #610 `_ + +* Pex exits with correct code when using entrypoint (#605) + `PR #605 `_ + +* Fix \*_custom_setuptools_useable ITs. (#606) + `PR #606 `_ + +* Update pyenv if neccesary (#586) + `PR #586 `_ + +* Fix script search in wheels. (#600) + `PR #600 `_ + +* Small Docstring Fix (#595) + `PR #595 `_ + 1.5.1 ----- diff --git a/pex/version.py b/pex/version.py index 5a61411b2..c5e0b15b7 100644 --- a/pex/version.py +++ b/pex/version.py @@ -1,7 +1,7 @@ # Copyright 2015 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = '1.5.1' +__version__ = '1.5.2' # Versions 34.0.0 through 35.0.2 (last pre-36.0.0) de-vendored dependencies which causes problems # for pex code so we exclude that range.