From cc4914d27819d859cf6a23a255c55cf6455de64e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 13 Sep 2009 20:07:23 -0400 Subject: Bump version number to 3.1b1. --- CHANGES.txt | 7 +++++-- TODO.txt | 1 + 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. diff --git a/TODO.txt b/TODO.txt index d18129a9..2b22bb35 100644 --- a/TODO.txt +++ b/TODO.txt @@ -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 -- cgit v1.2.1