diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-06 18:17:45 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-06 18:17:45 -0500 |
commit | 770d99ad7b017c6e03d7515af3caded1836806f0 (patch) | |
tree | cf50d412d0a6ac7d32abefca6762c12db06124be /doc/changes.rst | |
parent | f80a6b08cbb593a0ec0419ac01e6826c7072376b (diff) | |
download | python-coveragepy-git-770d99ad7b017c6e03d7515af3caded1836806f0.tar.gz |
Make a real 3.3.1 release
Diffstat (limited to 'doc/changes.rst')
-rw-r--r-- | doc/changes.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 6e3e8f38..37c685ea 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -11,6 +11,7 @@ Major change history for coverage.py :history: 20091128T072200, changes for 3.2 :history: 20091205T161525, 3.2 final :history: 20100221T151900, changes for 3.3 +:history: 20100306T181400, changes for 3.3.1 These are the major changes for coverage.py. For a more complete change history, see the `CHANGES.txt`_ file in the source tree. @@ -18,6 +19,19 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt +Version 3.3.1, 6 March 2010 +--------------------------- + +- Using `parallel=True` in .coveragerc file prevented reporting, but now does + not, fixing `issue 49`. + +- When running your code with "coverage run", if you call `sys.exit()`, + coverage.py will exit with that status code, fixing `issue 50`. + +.. _issue 49: http://bitbucket.org/ned/coveragepy/issue/49 +.. _issue 50: http://bitbucket.org/ned/coveragepy/issue/50 + + Version 3.3, 24 February 2010 ----------------------------- |