summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-08-20 13:15:49 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-08-20 13:15:49 -0400
commit918958badad6470df3839aed89523b4d0091335d (patch)
tree176317881cb8a203b6c371dd261b20566c0a3a53
parent35c3ce6f23b6900a895a7502e206c9d143c3996f (diff)
downloadpython-coveragepy-918958badad6470df3839aed89523b4d0091335d.tar.gz
Bump the version number to 3.4b1
-rw-r--r--CHANGES.txt4
-rw-r--r--coverage/__init__.py2
-rw-r--r--howto.txt2
-rw-r--r--setup.py6
4 files changed, 8 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5d200fc..f96498c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,8 +3,8 @@ Change history for Coverage.py
------------------------------
-Version 3.4a1
--------------
+Version 3.4b1 --- 21 August 2010
+--------------------------------
- BACKWARD INCOMPATIBILITY: the ``--omit`` and ``--include`` switches now take
file patterns rather than file prefixes, closing `issue 34`_ and `issue 36`_.
diff --git a/coverage/__init__.py b/coverage/__init__.py
index a81f61a..4330aea 100644
--- a/coverage/__init__.py
+++ b/coverage/__init__.py
@@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage
"""
-__version__ = "3.4a1" # see detailed history in CHANGES.txt
+__version__ = "3.4b1" # see detailed history in CHANGES.txt
__url__ = "http://nedbatchelder.com/code/coverage"
diff --git a/howto.txt b/howto.txt
index 9d2f812..23f4156 100644
--- a/howto.txt
+++ b/howto.txt
@@ -4,7 +4,7 @@
- Windows
- Ubuntu
- Mac
- - Pythons 2.3, 2.4, 2.5, 2.6, 3.1
+ - Pythons 2.3, 2.4, 2.5, 2.6, 2.7, 3.1, 3.2
- Version number in coverage/__init__.py
- 3.1a1, 3.1b1, 3.1c1, 3.1
- Update CHANGES.txt, including release date.
diff --git a/setup.py b/setup.py
index 043efeb..23762f2 100644
--- a/setup.py
+++ b/setup.py
@@ -6,14 +6,16 @@ Coverage.py measures code coverage, typically during test execution. It uses
the code analysis tools and tracing hooks provided in the Python standard
library to determine which lines are executable, and which have been executed.
-Coverage.py runs on Pythons 2.3 through 3.1.
+Coverage.py runs on Pythons 2.3 through 3.2.
Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue
tracker are at `bitbucket.org <http://bitbucket.org/ned/coveragepy>`_.
New in 3.2: Branch coverage!
-New in 3.3: .coveragerc files
+New in 3.3: .coveragerc files.
+
+New in 3.4: Better control over source to measure.
"""
# This file is used unchanged under all versions of Python, 2.x and 3.x.