From 5e648260760e0c66e48db47268f3b5d725e6953f Mon Sep 17 00:00:00 2001 From: Brian Wickman Date: Sun, 15 Feb 2015 10:43:24 -0800 Subject: [PATCH] Mint 0.8.6 release. --- CHANGES.rst | 7 +++++-- pex/version.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 21f8a3b6d..6a90f1c6e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,12 +3,15 @@ CHANGES ======= ---------- -0.8.6-dev0 +0.8.6 ---------- * Bug fix: Honor installed sys.excepthook in pex teardown. `RB #1733 `_ +* Bug fix: ``UrllibContext`` used ``replace`` as a keyword argument for ``bytes.decode`` + but this only works on Python 3. `Pull Request #46 `_ + ----- 0.8.5 ----- @@ -23,7 +26,7 @@ CHANGES * Performance improvement: Speed up the best-case scenario of dependency resolution. `RB #1685 `_ -* Bug fix: Change from uuid4().get_hex() to uuid4().hex to maintain Python3 +* Bug fix: Change from ``uuid4().get_hex()`` to ``uuid4().hex`` to maintain Python3 compatibility of pex.common. `Pull Request #39 `_ diff --git a/pex/version.py b/pex/version.py index 95b4da687..37e9d6dd5 100644 --- a/pex/version.py +++ b/pex/version.py @@ -1 +1 @@ -__version__ = '0.8.6-dev0' +__version__ = '0.8.6'