From d1343b3eda732fcbd1f18947bd30e1a2a6c102dc Mon Sep 17 00:00:00 2001 From: John Sirois Date: Sun, 10 Feb 2019 21:21:51 -0800 Subject: [PATCH] Prepare the 1.6.2 release. Fixes #652 --- CHANGES.rst | 18 ++++++++++++++++++ pex/version.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) 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'