summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-05-31 23:15:40 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-05-31 23:15:40 -0400
commit316a9d5a98f072dd14e25601467a49ba8397342a (patch)
treeefcd79dafebd4c8f26a75295c57f64d487f6d642
parentc4e6bf35f1bf1899df8cb9dcd49937b12a6c46d1 (diff)
downloadpython-coveragepy-316a9d5a98f072dd14e25601467a49ba8397342a.tar.gz
The next version will be 3.4
-rw-r--r--CHANGES.txt12
-rw-r--r--coverage/__init__.py2
2 files changed, 10 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a6c3713..9897e06 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,8 +3,8 @@ Change history for Coverage.py
------------------------------
-Next version
-------------
+Version 3.4a1
+-------------
- BACKWARD INCOMPATIBILITY: the --omit and --include switches now take file
patterns rather than file prefixes, closing `issue 34`_ and `issue 36`_.
@@ -13,7 +13,7 @@ Next version
coverage.py, replaced with `omit`, a list of filename patterns suitable for
`fnmatch`. A parallel argument `include` controls what files are included.
-- The reporting commands (report, annotate, html, and xml) now have a --include
+- The reporting commands (report, annotate, html, and xml) now have an --include
switch to restrict reporting to modules beginning with those prefixes,
similar to the existing --omit switch. Thanks, Zooko.
@@ -21,6 +21,12 @@ Next version
measures. This can speed execution and reduce the amount of data during
reporting. Thanks Zooko.
+- Coverage.py now installs a test-runner plugin for `nose`_ and `py.test`_.
+ Thanks, David Stanek, holger krekel, Ross Lawley.
+
+.. _nose: http://somethingaboutorange.com/mrl/projects/nose/
+.. _py.test: http://pytest.org
+
- Reports now have a column of missed line counts rather than executed line
counts, since developers should focus on reducing the missed lines to zero,
rather than increasing the executed lines to varying targets. Once
diff --git a/coverage/__init__.py b/coverage/__init__.py
index 9fd4a8d..777d451 100644
--- a/coverage/__init__.py
+++ b/coverage/__init__.py
@@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage
"""
-__version__ = "3.3.2a1" # see detailed history in CHANGES.txt
+__version__ = "3.4a1" # see detailed history in CHANGES.txt
__url__ = "http://nedbatchelder.com/code/coverage"