diff --git a/CHANGES.rst b/CHANGES.rst index 33aae1286..c7101cdd1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,27 @@ Release Notes ============= +2.1.21 +------ + +* Fix ``iter_compatible_interpreters`` with ``path``. (#1110) + `PR #1110 `_ + +* Fix ``Requires-Python`` environment marker mapping. (#1105) + `PR #1105 `_ + +* Fix spurious ``InstalledDistribution`` env markers. (#1104) + `PR #1104 `_ + +* Deprecate ``-R``/``--resources-directory``. (#1103) + `PR #1103 `_ + +* Fix ResourceWarning for unclosed ``/dev/null``. (#1102) + `PR #1102 `_ + +* Fix runtime vendoring bytecode compilation races. (#1099) + `PR #1099 `_ + 2.1.20 ------ diff --git a/pex/version.py b/pex/version.py index dcc67e836..8b44b5e28 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.20" +__version__ = "2.1.21"