diff --git a/CHANGES.txt b/CHANGES.txt index 5b53ec740..1e4b888b5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,14 +2,14 @@ Change history for Coverage.py ------------------------------ -3.7.1 ------ +3.7.1 -- 13 December 2013 +------------------------- + +- Improved the speed of HTML report generation by about 20%. - Fixed the mechanism for finding OS-installed static files for the HTML report so that it will actually find OS-installed static files. -- Improved the speed of HTML report generation by about 20%. - 3.7 --- 6 October 2013 ---------------------- diff --git a/doc/changes.rst b/doc/changes.rst index f87bb9186..3ddf88969 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -26,6 +26,7 @@ Major change history for coverage.py :history: 20121223T180600, updated for 3.6b2. :history: 20130105T173500, updated for 3.6 :history: 20131005T205700, updated for 3.7 +:history: 20131212T213100, updated for 3.7.1 These are the major changes for coverage.py. For a more complete change @@ -34,6 +35,17 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt +.. _changes_371: + +Version 3.7.1 --- 13 December 2013 +---------------------------------- + +- Improved the speed of HTML report generation by about 20%. + +- Fixed the mechanism for finding OS-installed static files for the HTML report + so that it will actually find OS-installed static files. + + .. _changes_37: Version 3.7 --- 6 October 2013 diff --git a/doc/conf.py b/doc/conf.py index 052bd8ed8..41a00e3e8 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = '3.7' +version = '3.7.1' # The full version, including alpha/beta/rc tags. -release = '3.7' +release = '3.7.1' # 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 657e3d384..3a0d9308e 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -30,6 +30,7 @@ coverage.py :history: 20121229T112300, Updated for 3.6b3. :history: 20130105T174000, Updated for 3.6 :history: 20131005T210000, Updated for 3.7 +:history: 20131212T213300, Updated for 3.7.1 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -42,7 +43,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 3.7, released 6 October 2013. + The latest version is coverage.py 3.7.1, released 13 December 2013. It is supported on Python versions 2.3 through 3.4, and PyPy 2.1. .. ifconfig:: prerelease diff --git a/doc/install.rst b/doc/install.rst index 2e807fa23..bc8097a21 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -19,6 +19,7 @@ Installation :history: 20121229T112400, updated for 3.6b3. :history: 20130105T174400, updated for 3.6. :history: 20131005T210600, updated for 3.7. +:history: 20131212T213500, updated for 3.7.1. .. highlight:: console @@ -74,9 +75,9 @@ If all went well, you should be able to open a command prompt, and see coverage installed properly:: $ coverage --version - Coverage.py, version 3.7. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.7.1. http://nedbatchelder.com/code/coverage You can also invoke coverage as a module:: $ python -m coverage --version - Coverage.py, version 3.7. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.7.1. http://nedbatchelder.com/code/coverage