diff --git a/CHANGES.rst b/CHANGES.rst index c829f74d5..26dc72d40 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,32 @@ Release Notes ============= +2.1.46 +------ + +This release improves PEX file build reproducibility and requirement +parsing of environment markers in Pip's proprietary URL format. + +Also, the `-c` / `--script` / `--console-script` argument now supports +non-Python distribution scripts. + +Finally, new contributor @blag improved the README. + +* Fix Pip proprietary URL env marker handling. (#1417) + `PR #1417 `_ + +* Un-reify installed wheel script shebangs. (#1410) + `PR #1410 `_ + +* Support deterministic repository extract tool. (#1411) + `PR #1411 `_ + +* Improve examples and add example subsection titles (#1409) + `PR #1409 `_ + +* support any scripts specified in `setup(scripts=...)` from setup.py. (#1381) + `PR #1381 `_ + 2.1.45 ------ @@ -72,7 +98,7 @@ that improves Pip execution environment isolation. 2.1.41 ------ -This release brings a hotfix from @kaos for interpreter identification +This release brings a hotfix from @kaos for interpreter identification on macOS 11. * Update interpreter.py (#1332) diff --git a/pex/version.py b/pex/version.py index 29d0fe485..2c840cdc4 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.45" +__version__ = "2.1.46"