diff options
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | coverage/__init__.py | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 8e1c6e0d..0282889e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,8 +2,8 @@ Change history for Coverage
---------------------------
-Version 3.0
------------
+Version 3.0, 13 June 2009
+-------------------------
- Fixed the way the Python library was ignored. Too much code was being
excluded the old way.
diff --git a/coverage/__init__.py b/coverage/__init__.py index 170ac7e7..6d5c97e4 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -4,9 +4,8 @@ Ned Batchelder http://nedbatchelder.com/code/modules/coverage.html """ -# TODO: more in the docstring. -__version__ = "3.0c1" # see detailed history in CHANGES +__version__ = "3.0" # see detailed history in CHANGES from coverage.control import coverage from coverage.data import CoverageData |