From a1774d420011b155ba09b5a62b0bafca0477b4ee Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 3 Oct 2012 21:18:39 -0400 Subject: Bump the version number to 3.5.4 --- CHANGES.txt | 10 ++++++++++ coverage/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 9e713582..572c5084 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,6 +2,16 @@ Change history for Coverage.py ------------------------------ +Version 3.5.4b1 +--------------- + +- Running an HTML report in Python 3 in the same directory as an old Python 2 + HTML report would fail with a UnicodeDecodeError. This issue (`issue 193`_) + is now fixed. + +.. _issue 193: https://bitbucket.org/ned/coveragepy/issue/193/unicodedecodeerror-on-htmlpy + + Version 3.5.3 --- 29 September 2012 ----------------------------------- diff --git a/coverage/__init__.py b/coverage/__init__.py index 971ab5dd..637bc7ab 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage """ -__version__ = "3.5.3" # see detailed history in CHANGES.txt +__version__ = "3.5.4b1" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" if max(__version__).isalpha(): -- cgit v1.2.1