diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-09-29 09:38:26 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-09-29 09:38:26 -0400 |
commit | 56436f20ee79b6f295251aa88ee9691c9f92c511 (patch) | |
tree | bf3f8c9371e5e7e4cf3fcda86f66f91346ec836e /doc/changes.rst | |
parent | 69ef34577b7dd25fea1e65c5d1bb6d629f77d9bc (diff) | |
download | python-coveragepy-git-56436f20ee79b6f295251aa88ee9691c9f92c511.tar.gz |
Update version number to 3.5.3
Diffstat (limited to 'doc/changes.rst')
-rw-r--r-- | doc/changes.rst | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 666280b2..c88bf383 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -21,6 +21,7 @@ Major change history for coverage.py :history: 20110923T081600, updated for 3.5.1 :history: 20120429T162100, updated for 3.5.2b1 :history: 20120503T233700, updated for 3.5.2 +:history: 20120929T093100, updated for 3.5.3 These are the major changes for coverage.py. For a more complete change @@ -29,6 +30,43 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt +Version 3.5.3 --- 29 September 2012 +----------------------------------- + +- Line numbers in the HTML report line up better with the source lines, fixing + `issue 197`, thanks Marius Gedminas. + +- When specifying a directory as the source= option, the directory itself no + longer needs to have a ``__init__.py`` file, though its subdirectories do, to + be considered as source files. + +- Files encoded as UTF-8 with a BOM are now properly handled, fixing + `issue 179`_. Thanks, Pablo Carballo. + +- Fixed more cases of non-Python files being reported as Python source, and + then not being able to parse them as Python. Closes `issue 82` (again). + Thanks, Julian Berman. + +- Fixed memory leaks under Python 3, thanks, Brett Cannon. Closes `issue 147`_. + +- Optimized .pyo files may not have been handled correctly, `issue 195`_. + Thanks, Marius Gedminas. + +- Certain unusually named file paths could have been mangled during reporting, + `issue 194`_. Thanks, Marius Gedminas. + +- Try to do a better job of the impossible task of detecting when we can't + build the C extension, fixing `issue 183`_. + +.. _issue 82: https://bitbucket.org/ned/coveragepy/issue/82/tokenerror-when-generating-html-report +.. _issue 147: https://bitbucket.org/ned/coveragepy/issue/147/massive-memory-usage-by-ctracer +.. _issue 179: https://bitbucket.org/ned/coveragepy/issue/179/htmlreporter-fails-when-source-file-is +.. _issue 183: https://bitbucket.org/ned/coveragepy/issue/183/install-fails-for-python-23 +.. _issue 194: https://bitbucket.org/ned/coveragepy/issue/194/filelocatorrelative_filename-could-mangle +.. _issue 195: https://bitbucket.org/ned/coveragepy/issue/195/pyo-file-handling-in-codeunit +.. _issue 197: https://bitbucket.org/ned/coveragepy/issue/197/line-numbers-in-html-report-do-not-align + + Version 3.5.2 --- 4 May 2012 ---------------------------- |