diff options
-rw-r--r-- | CHANGES.txt | 10 | ||||
-rw-r--r-- | coverage/__init__.py | 2 |
2 files changed, 11 insertions, 1 deletions
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(): |