diff options
-rw-r--r-- | CHANGES.txt | 7 | ||||
-rw-r--r-- | TODO.txt | 1 | ||||
-rw-r--r-- | coverage/__init__.py | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index adc4f09c..1ef5734b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,13 +2,16 @@ Change history for Coverage.py
------------------------------
-Next version
-------------
+Version 3.1, unreleased
+-----------------------
- Coverage.py has a new command line syntax with subcommands. This expands the
possibilities for adding features and options in the future. The old syntax
is still supported.
+- Added the "coverage xml" command for producing coverage reports in a
+ Cobertura-compatible XML format.
+
- Added the --timid option to enable a simpler slower trace function that works
for DecoratorTools (including TurboGears) projects.
@@ -177,6 +177,7 @@ x Tests about the "import __main__" in cmdline.py - Mac
- Pythons 2.3, 2.4, 2.5, 2.6
- Version number in coverage/__init__.py:__version__
+ - 3.1a1, 3.1b1, 3.1c1, 3.1
- Update CHANGES, including release date.
- Update docs
- Generate new sample_html to get the latest, incl footer version number:
diff --git a/coverage/__init__.py b/coverage/__init__.py index e7d01bf7..0f8a0cc0 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage """ -__version__ = "3.0.1" # see detailed history in CHANGES.txt +__version__ = "3.1b1" # see detailed history in CHANGES.txt from coverage.control import coverage from coverage.data import CoverageData |