diff options
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | doc/changes.rst | 14 | ||||
-rw-r--r-- | doc/conf.py | 4 | ||||
-rw-r--r-- | doc/index.rst | 3 |
4 files changed, 20 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 606600d5..4212148b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,8 +2,8 @@ Change history for Coverage.py ------------------------------ -Version 3.3.1 -------------- +Version 3.3.1, 6 March 2010 +--------------------------- - Using `parallel=True` in .coveragerc file prevented reporting, but now does not, fixing `issue 49`. 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 ----------------------------- diff --git a/doc/conf.py b/doc/conf.py index 132872fe..9c39b852 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -47,9 +47,9 @@ copyright = u'2009-2010, Ned Batchelder' # built documents.
#
# The short X.Y version.
-version = '3.3'
+version = '3.3.1'
# The full version, including alpha/beta/rc tags.
-release = '3.3'
+release = '3.3.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/doc/index.rst b/doc/index.rst index 96eb1121..6ce3e827 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -11,6 +11,7 @@ coverage.py :history: 20091127T155100, version 3.2 :history: 20091205T161429, version 3.2 for real. :history: 20100224T204700, version 3.3 +:history: 20100306T181500, version 3.3.1 Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program, noting which parts of the code have been executed, then @@ -20,7 +21,7 @@ Coverage measurement is typically used to gauge the effectiveness of tests. It can show which parts of your product code are being exercised by tests, and which are not. -The latest version is 3.3, released 24 Februrary 2010. +The latest version is 3.3.1, released 6 March 2010. It is supported on Python 2.3 through 3.1. |