diff options
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | doc/changes.rst | 8 | ||||
-rw-r--r-- | doc/index.rst | 3 | ||||
-rw-r--r-- | doc/install.rst | 5 |
4 files changed, 15 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 6da0ef5e..badf930b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,8 +2,8 @@ Change history for Coverage.py ------------------------------ -Version 3.6b3 -------------- +Version 3.6b3 -- 29 December 2012 +--------------------------------- - Beta 2 broke the nose plugin. It's fixed again, closing `issue 224`_. diff --git a/doc/changes.rst b/doc/changes.rst index 7305082d..af71f310 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -31,6 +31,14 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt +Version 3.6b3 -- 29 December 2012 +--------------------------------- + +- Beta 2 broke the nose plugin. It's fixed again, closing `issue 224`_. + +.. _issue 224: https://bitbucket.org/ned/coveragepy/issue/224/36b2-breaks-nosexcover + + Version 3.6b2 -- 23 December 2012 --------------------------------- diff --git a/doc/index.rst b/doc/index.rst index 25d18677..319e525b 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -27,6 +27,7 @@ coverage.py :history: 20121117T094900, Change from easy_install to pip. :history: 20121128T203700, Updated for 3.6b1. :history: 20121223T180600, Updated for 3.6b2. +:history: 20121229T112300, Updated for 3.6b3. Coverage.py is a tool for measuring code coverage of Python programs. It @@ -44,7 +45,7 @@ not. .. ifconfig:: prerelease - The latest version is coverage.py 3.6b2, released 23 December 2012. + The latest version is coverage.py 3.6b3, released 29 December 2012. It is supported on Python versions 2.3 through 3.3, and PyPy 1.9. **This is a pre-release build. The usual warnings about possible bugs apply.** The latest stable version is coverage.py 3.5.3, `described here`_. diff --git a/doc/install.rst b/doc/install.rst index 9cfb019b..a4e91acb 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -16,6 +16,7 @@ Installation :history: 20121117T095000, Now setuptools is a pre-req. :history: 20121128T203000, updated for 3.6b1. :history: 20121223T180800, updated for 3.6b2. +:history: 20121229T112400, updated for 3.6b3. .. highlight:: console @@ -70,9 +71,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.6b2. http://nedbatchelder.com/code/coverage/3.6b2 + Coverage.py, version 3.6b3. http://nedbatchelder.com/code/coverage/3.6b3 You can also invoke coverage as a module:: $ python -m coverage --version - Coverage.py, version 3.6b2. http://nedbatchelder.com/code/coverage/3.6b2 + Coverage.py, version 3.6b3. http://nedbatchelder.com/code/coverage/3.6b3 |