From 763472abd3f3c0fd83498f29f392dcec5a6229db Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 6 Mar 2010 18:17:45 -0500 Subject: Make a real 3.3.1 release --- doc/changes.rst | 14 ++++++++++++++ doc/conf.py | 4 ++-- doc/index.rst | 3 ++- 3 files changed, 18 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/changes.rst b/doc/changes.rst index 6e3e8f3..37c685e 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 132872f..9c39b85 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 96eb112..6ce3e82 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. -- cgit v1.2.1