From 5e8c016d9615d12ce1e57675ba2cebb44c21bf03 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 28 Feb 2010 13:25:29 -0500 Subject: We'll call this 3.3.1 --- CHANGES.txt | 8 ++++++++ coverage/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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" -- cgit v1.2.1