diff options
-rw-r--r-- | coverage/__init__.py | 2 | ||||
-rw-r--r-- | doc/changes.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/coverage/__init__.py b/coverage/__init__.py index 365d977e..0dd80670 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage """ -__version__ = "3.4b2" # see detailed history in CHANGES.txt +__version__ = "3.4c1" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" if 'b' in __version__: diff --git a/doc/changes.rst b/doc/changes.rst index 832ae1dc..1200282a 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -41,7 +41,7 @@ Version 3.4 beta --- 6 September 2010 - Completely unexecuted files can now be included in coverage results, reported as 0% covered. This only happens if the --source option is specified, since coverage.py needs guidance about where to look for source files. - + - Various warnings are printed to stderr for problems encountered during data measurement: if a ``--source`` module has no Python source to measure, or is never encountered at all, or if no data is collected. |