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
commit9be47b1a910715e6a0803ac8b6c03aa8fe8f29d7 (patch)
tree8af6718c8209cc098705ed8ac0c316f8e477eb2a
parent7bb1d77bd46523bc00028655553c3626cc922067 (diff)
downloadpython-coveragepy-git-9be47b1a910715e6a0803ac8b6c03aa8fe8f29d7.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 a6c37131..9897e06f 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 9fd4a8d2..777d451b 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"