diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-04 22:38:56 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-04 22:38:56 -0400 |
commit | ad972f398d4a10f5504f853679ea83933b51f99c (patch) | |
tree | 04a2d64fae53cd205c1969b9d009314e5ba8396f | |
parent | 6132f31eaee8ac3e597df8fb9134f4ddf41422f6 (diff) | |
download | python-coveragepy-ad972f398d4a10f5504f853679ea83933b51f99c.tar.gz |
Bump version numbers for 3.5b1
-rw-r--r-- | coverage/__init__.py | 2 | ||||
-rw-r--r-- | doc/changes.rst | 6 | ||||
-rw-r--r-- | doc/conf.py | 6 | ||||
-rw-r--r-- | doc/index.rst | 2 | ||||
-rw-r--r-- | doc/install.rst | 4 | ||||
-rw-r--r-- | setup.py | 3 |
6 files changed, 15 insertions, 8 deletions
diff --git a/coverage/__init__.py b/coverage/__init__.py index 70231c1..90fffa4 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage """ -__version__ = "3.5a1" # see detailed history in CHANGES.txt +__version__ = "3.5b1" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" if max(__version__).isalpha(): diff --git a/doc/changes.rst b/doc/changes.rst index e98822e..8b97507 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -16,6 +16,8 @@ Major change history for coverage.py :history: 20100820T151500, updated for 3.4b1 :history: 20100906T133800, updated for 3.4b2 :history: 20100919T163400, updated for 3.4 release. +:history: 20110604T214100, updated for 3.5b1 + These are the major changes for coverage.py. For a more complete change history, see the `CHANGES.txt`_ file in the source tree. @@ -23,8 +25,8 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt -Version 3.5b1 --- ?? June 2011 ------------------------------- +Version 3.5b1 --- 5 June 2011 +----------------------------- HTML reporting: diff --git a/doc/conf.py b/doc/conf.py index ceec8a8..b863681 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -40,16 +40,16 @@ master_doc = 'index' # General information about the project.
project = u'coverage.py'
-copyright = u'2009-2010, Ned Batchelder'
+copyright = u'2009-2011, Ned Batchelder'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
-version = '3.4'
+version = '3.5'
# The full version, including alpha/beta/rc tags.
-release = '3.4'
+release = '3.5b1'
# 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 a5136f3..cf595de 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -27,7 +27,7 @@ Coverage measurement is typically used to gauge the effectiveness of tests. It can show which parts of your code are being exercised by tests, and which are not. -The latest version is 3.5b1, released ?? June 2011 +The latest version is 3.5b1, released 5 June 2011. It is supported on Python versions 2.3 through 3.2. diff --git a/doc/install.rst b/doc/install.rst index 76a9854..63f7e21 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -7,6 +7,7 @@ Installation :history: 20100725T225600, new for 3.4. :history: 20100820T151500, updated for 3.4b1. :history: 20100906T134800, updated for 3.4b2. +:history: 20110604T213400, updated for 3.5b1. .. highlight:: console .. _coverage_pypi: http://pypi.python.org/pypi/coverage @@ -58,4 +59,5 @@ If all went well, you should be able to open a command prompt, and see coverage installed properly:: $ coverage --version - Coverage.py, version 3.4. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.5b1. http://nedbatchelder.com/code/coverage + @@ -17,6 +17,9 @@ New in 3.3: .coveragerc files. New in 3.4: Better control over source to measure, and unexecuted files can be reported. + +New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report. + """ # This file is used unchanged under all versions of Python, 2.x and 3.x. |