diff --git a/CHANGES.rst b/CHANGES.rst index 93af30f02..7b099ec80 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,24 @@ Release Notes ============= +1.6.2 +----- + +* Support de-vendoring for installs. (#666) + `PR #666 `_ + +* Add User-Agent header when resolving via urllib (#663) + `PR #663 `_ + +* Fix interpreter finding (#662) + `PR #662 `_ + +* Add recipe to use PEX with requests module and proxies. (#659) + `PR #659 `_ + +* Allow pex to be invoked using runpy (python -m pex). (#637) + `PR #637 `_ + 1.6.1 ----- diff --git a/pex/version.py b/pex/version.py index b761b76ca..eef7022d0 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__ = '1.6.1' +__version__ = '1.6.2'