diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-23 18:19:08 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-23 18:19:08 -0500 |
commit | 0ef0ce15c6261e0537337266e05e38b8ea5b610f (patch) | |
tree | dde888b9ef9ee26d4c338875b05becbee657f030 /doc/changes.rst | |
parent | bf5ffbc96ebbe7e632bae4af3182e159b09c97e6 (diff) | |
download | python-coveragepy-git-0ef0ce15c6261e0537337266e05e38b8ea5b610f.tar.gz |
Mark stuff as 3.6b2
Diffstat (limited to 'doc/changes.rst')
-rw-r--r-- | doc/changes.rst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 17927d64..7305082d 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -23,6 +23,7 @@ Major change history for coverage.py :history: 20120503T233700, updated for 3.5.2 :history: 20120929T093100, updated for 3.5.3 :history: 20121129T060100, updated for 3.6b1. +:history: 20121223T180600, updated for 3.6b2. These are the major changes for coverage.py. For a more complete change @@ -30,6 +31,26 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt +Version 3.6b2 -- 23 December 2012 +--------------------------------- + +- Coverage.py runs on Python 2.3 and 2.4 again. It was broken in 3.6b1. + +- The C extension is optionally compiled using a different more widely-used + technique, taking another stab at fixing `issue 80`_ once and for all. + +- Combining data files would create entries for phantom files if used with + ``source`` and path aliases. It no longer does. + +- ``debug sys`` now shows the configuration file path that was read. + +- If an oddly-behaved package claims that code came from an empty-string + filename, coverage.py no longer associates it with the directory name, + fixing `issue 221`_. + +.. _issue 80: https://bitbucket.org/ned/coveragepy/issue/80/is-there-a-duck-typing-way-to-know-we-cant +.. _issue 221: https://bitbucket.org/ned/coveragepy/issue/221/coveragepy-incompatible-with-pyratemp + Version 3.6b1 -- 28 November 2012 --------------------------------- |