summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-02-24 20:48:28 -0500
committerNed Batchelder <ned@nedbatchelder.com>2010-02-24 20:48:28 -0500
commit1db860fe7412fb5bda5857c41ae73e6efde71616 (patch)
treeca5d45073e72024a0b13c3d4ba9d295a813a706b
parent3d498077c01ce905106bab708fa52c055ffcba16 (diff)
downloadpython-coveragepy-git-1db860fe7412fb5bda5857c41ae73e6efde71616.tar.gz
Move the version number to 3.3
-rw-r--r--CHANGES.txt4
-rw-r--r--coverage/__init__.py2
-rw-r--r--doc/changes.rst4
-rw-r--r--doc/conf.py4
-rw-r--r--doc/index.rst4
-rw-r--r--howto.txt2
-rw-r--r--setup.py2
7 files changed, 12 insertions, 10 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index dd921f8d..2a5aec31 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,8 +3,8 @@ Change history for Coverage.py
------------------------------
-Version 3.3
------------
+Version 3.3, 24 February 2010
+-----------------------------
- Settings are now read from a .coveragerc file. A specific file can be
specified on the command line with --rcfile=FILE. The name of the file can
diff --git a/coverage/__init__.py b/coverage/__init__.py
index 6e84b054..437b323e 100644
--- a/coverage/__init__.py
+++ b/coverage/__init__.py
@@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage
"""
-__version__ = "3.3a1" # see detailed history in CHANGES.txt
+__version__ = "3.3" # see detailed history in CHANGES.txt
__url__ = "http://nedbatchelder.com/code/coverage"
diff --git a/doc/changes.rst b/doc/changes.rst
index 0ec5bedc..6e3e8f38 100644
--- a/doc/changes.rst
+++ b/doc/changes.rst
@@ -18,8 +18,8 @@ history, see the `CHANGES.txt`_ file in the source tree.
.. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt
-Version 3.3
------------
+Version 3.3, 24 February 2010
+-----------------------------
- Settings are now read from a .coveragerc file. A specific file can be
specified on the command line with --rcfile=FILE. The name of the file can
diff --git a/doc/conf.py b/doc/conf.py
index 430873a5..132872fe 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -47,9 +47,9 @@ copyright = u'2009-2010, Ned Batchelder'
# built documents.
#
# The short X.Y version.
-version = '3.2'
+version = '3.3'
# The full version, including alpha/beta/rc tags.
-release = '3.2'
+release = '3.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/doc/index.rst b/doc/index.rst
index f1e49e7e..96eb1121 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -10,7 +10,7 @@ coverage.py
:history: 20091004T211900, version 3.1
:history: 20091127T155100, version 3.2
:history: 20091205T161429, version 3.2 for real.
-
+:history: 20100224T204700, version 3.3
Coverage.py is a tool for measuring code coverage of Python programs. It
monitors your program, noting which parts of the code have been executed, then
@@ -20,7 +20,7 @@ Coverage measurement is typically used to gauge the effectiveness of tests. It
can show which parts of your product code are being exercised by tests, and
which are not.
-The latest version is 3.2, released 5 December 2009.
+The latest version is 3.3, released 24 Februrary 2010.
It is supported on Python 2.3 through 3.1.
diff --git a/howto.txt b/howto.txt
index 36303038..311f2acb 100644
--- a/howto.txt
+++ b/howto.txt
@@ -7,7 +7,7 @@
- Pythons 2.3, 2.4, 2.5, 2.6, 3.1
- Version number in coverage/__init__.py
- 3.1a1, 3.1b1, 3.1c1, 3.1
-- Update CHANGES, including release date.
+- Update CHANGES.txt, including release date.
- Update docstring in setup.py, including "New in x.y:"
- Update docs
- Version, date, and changes in doc/changes.rst
diff --git a/setup.py b/setup.py
index 4c1a9187..e6645cfc 100644
--- a/setup.py
+++ b/setup.py
@@ -12,6 +12,8 @@ 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
"""
# This file is used unchanged under all versions of Python, 2.x and 3.x.