diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-10 21:50:07 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-10 21:50:07 -0500 |
commit | e4da9831f86dbdd97bdb2a84757c28af5068e523 (patch) | |
tree | 7bd58825fb8eddbdd59ef6dccef9ce0d0c3cee35 | |
parent | e76e08b22da8704a6c05df195857f5b0398006ec (diff) | |
download | python-coveragepy-git-e4da9831f86dbdd97bdb2a84757c28af5068e523.tar.gz |
Nearing 3.2b1
-rw-r--r-- | CHANGES.txt | 12 | ||||
-rw-r--r-- | coverage/__init__.py | 2 | ||||
-rw-r--r-- | doc/branch.rst | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index ff1ee52e..7b9b2b11 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,18 +2,18 @@ Change history for Coverage.py
------------------------------
-Next version
-------------
+Version 3.2b1, 10 November 2009
+-------------------------------
+
+- Branch coverage!
-- Branch coverage.
+- XML reporting has file paths that let Cobertura find the source code.
- The tracer code has changed, it's a few percent faster.
- Some exceptions reported by the command line interface have been cleaned up
- so that tracebacks inside coverage.py aren't shown. Fixes `issue 23`_
+ so that tracebacks inside coverage.py aren't shown. Fixes `issue 23`_.
-- XML reporting has file paths that let Cobertura find the source code.
-
.. _issue 23: http://bitbucket.org/ned/coveragepy/issue/23
diff --git a/coverage/__init__.py b/coverage/__init__.py index 16db463c..bf0f3020 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage """ -__version__ = "3.2a1" # see detailed history in CHANGES.txt +__version__ = "3.2b1" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" diff --git a/doc/branch.rst b/doc/branch.rst index 9b03861d..32f7b923 100644 --- a/doc/branch.rst +++ b/doc/branch.rst @@ -42,8 +42,8 @@ file is an execution opportunity, as is each branch destination. Currently, only HTML reports give information about which lines had missing branches. Lines that were missing some branches are shown in yellow, with an -annotation at the far right of branch destination line numbers that were not -exercised. +annotation at the far right showing branch destination line numbers that were +not exercised. How it works |