diff options
-rw-r--r-- | CHANGES.txt | 8 | ||||
-rw-r--r-- | coverage/__init__.py | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 2a5aec31..4f6026ac 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,6 +2,14 @@ Change history for Coverage.py ------------------------------ +Version 3.3.1 +------------- + +- When running your code with "coverage run", if you call `sys.exit()`, + coverage.py will exit with that status code, fixing `issue 50`. + +.. _issue 50: http://bitbucket.org/ned/coveragepy/issue/50 + Version 3.3, 24 February 2010 ----------------------------- diff --git a/coverage/__init__.py b/coverage/__init__.py index 437b323e..f8c96a11 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage """ -__version__ = "3.3" # see detailed history in CHANGES.txt +__version__ = "3.3.1" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" |