diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-05-03 23:41:48 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-05-03 23:41:48 -0400 |
commit | 52e04861c0db12cba0be37507adfec887ada475c (patch) | |
tree | d4dcf68cba79aa8d06870bbf6ac163be8c43929a /doc | |
parent | 03da81722026559cabe6b2685e825688d436c069 (diff) | |
download | python-coveragepy-git-52e04861c0db12cba0be37507adfec887ada475c.tar.gz |
Prepare for 3.5.2
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changes.rst | 5 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 3 | ||||
-rw-r--r-- | doc/install.rst | 5 |
4 files changed, 9 insertions, 6 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index b2836128..666280b2 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -20,6 +20,7 @@ Major change history for coverage.py :history: 20110629T082200, updated for 3.5 :history: 20110923T081600, updated for 3.5.1 :history: 20120429T162100, updated for 3.5.2b1 +:history: 20120503T233700, updated for 3.5.2 These are the major changes for coverage.py. For a more complete change @@ -28,8 +29,8 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt -Version 3.5.2b1 --- 29 April 2012 ---------------------------------- +Version 3.5.2 --- 4 May 2012 +---------------------------- - The HTML report has slightly tweaked controls: the buttons at the top of the page are color-coded to the source lines they affect. diff --git a/doc/conf.py b/doc/conf.py index 0fac2ece..dd432751 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ copyright = u'2009-2012, Ned Batchelder' # The short X.Y version.
version = '3.5.2'
# The full version, including alpha/beta/rc tags.
-release = '3.5.2b1'
+release = '3.5.2'
# 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 49b04eb3..78f87c73 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -22,6 +22,7 @@ coverage.py :history: 20110827T221800, update for 3.5.1b1 :history: 20110923T081800, update for 3.5.1 :history: 20120429T162100, updated for 3.5.2b1 +:history: 20120503T233800, updated for 3.5.2 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -34,7 +35,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 3.5.1, released 23 September 2011. + The latest version is coverage.py 3.5.2, released 4 May 2012. It is supported on Python versions 2.3 through 3.2. .. ifconfig:: prerelease diff --git a/doc/install.rst b/doc/install.rst index f4af2d63..cf67df6b 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -10,7 +10,8 @@ Installation :history: 20110604T213400, updated for 3.5b1. :history: 20110629T082400, updated for 3.5. :history: 20110923T081900, updated for 3.5.1. -:history: 20120429T162500, updated for 3.5.2b1 +:history: 20120429T162500, updated for 3.5.2b1. +:history: 20120503T234000, updated for 3.5.2. .. highlight:: console @@ -63,5 +64,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.5.2b1. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.5.2. http://nedbatchelder.com/code/coverage |