diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-29 09:09:49 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-29 09:09:49 -0400 |
commit | b04667aa443d335107c2ba7edab906716d037025 (patch) | |
tree | 7f0d81d5292ecac72ad01a0dbd5025ddad42befb /doc | |
parent | 0cefb9951a20815cf04ddce73e7683021de162db (diff) | |
download | python-coveragepy-git-b04667aa443d335107c2ba7edab906716d037025.tar.gz |
Bump version number to 3.5
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changes.rst | 5 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 4 | ||||
-rw-r--r-- | doc/install.rst | 4 |
4 files changed, 10 insertions, 5 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 8b97507e..45e7a75c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -17,6 +17,7 @@ Major change history for coverage.py :history: 20100906T133800, updated for 3.4b2 :history: 20100919T163400, updated for 3.4 release. :history: 20110604T214100, updated for 3.5b1 +:history: 20110629T082200, updated for 3.5 These are the major changes for coverage.py. For a more complete change @@ -25,8 +26,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 --- 5 June 2011 ------------------------------ +Version 3.5 --- 29 June 2011 +---------------------------- HTML reporting: diff --git a/doc/conf.py b/doc/conf.py index e4dd824d..939a5bd2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ copyright = u'2009-2011, Ned Batchelder' # The short X.Y version.
version = '3.5'
# The full version, including alpha/beta/rc tags.
-release = '3.5b1'
+release = '3.5'
# 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 e7a60531..defd8064 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,6 +18,8 @@ coverage.py :history: 20100919T163500, updated for 3.4 release. :history: 20110213T081200, claim true 3.2 compatibility. :history: 20110604T114800, update for 3.5b1 +:history: 20110629T082300, update for 3.5 + 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 @@ -29,7 +31,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 3.4, released 10 September 2010. + The latest version is coverage.py 3.5, released 29 June 2011. It is supported on Python versions 2.3 through 3.2. .. ifconfig:: prerelease diff --git a/doc/install.rst b/doc/install.rst index 63f7e214..8807e4ba 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -8,6 +8,8 @@ Installation :history: 20100820T151500, updated for 3.4b1. :history: 20100906T134800, updated for 3.4b2. :history: 20110604T213400, updated for 3.5b1. +:history: 20110629T082400, updated for 3.5. + .. highlight:: console .. _coverage_pypi: http://pypi.python.org/pypi/coverage @@ -59,5 +61,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.5b1. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.5. http://nedbatchelder.com/code/coverage |