diff --git a/CHANGES.rst b/CHANGES.rst index bf4379edd..dd0d64575 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,19 @@ Release Notes ============= +2.1.132 +------- + +This release brings support for the latest Pip release with +`--pip-version 23.1` or by using new support for pinning to the latest +version of Pip supported by Pex with `--pip-version latest`. + +* Add support for Pip 23.1 (#2114) + `PR #2114 `_ + +* Add support for ``--pip-version latest``. (#2116) + `PR #2116 `_ + 2.1.131 ------- diff --git a/pex/version.py b/pex/version.py index d0a9d4923..ddfe692f1 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.131" +__version__ = "2.1.132"