diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-28 20:45:54 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-28 20:45:54 -0500 |
commit | 17d1171ffd06ea2a724a4b783342677c24274fdb (patch) | |
tree | 33f16ceaae1c180e8cf92832b552bfe7e4ed1a80 | |
parent | 78612ba0743bc6822285a05ea68bf657cbaa9322 (diff) | |
download | python-coveragepy-git-17d1171ffd06ea2a724a4b783342677c24274fdb.tar.gz |
Doc tweaks for 3.6b1
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | doc/index.rst | 9 | ||||
-rw-r--r-- | doc/install.rst | 5 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 12 insertions, 8 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 536eb89c..3e340536 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,8 +2,8 @@ Change history for Coverage.py ------------------------------ -Version 3.6b1 -------------- +Version 3.6b1 -- 28 November 2012 +--------------------------------- - Wildcards in ``include=`` and ``omit=`` arguments were not handled properly in reporting functions, though they were when running. Now they are handled diff --git a/doc/index.rst b/doc/index.rst index 474e782f..2b7d8d22 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -25,6 +25,7 @@ coverage.py :history: 20120503T233800, updated for 3.5.2 :history: 20120929T093500, updated for 3.5.3 :history: 20121117T094900, Change from easy_install to pip. +:history: 20121128T203700, Updated for 3.6b1. Coverage.py is a tool for measuring code coverage of Python programs. It @@ -42,10 +43,10 @@ not. .. ifconfig:: prerelease - The latest version is coverage.py 3.5.2b1, released 29 April 2012. - *This is a pre-release build. The usual warnings about possible bugs apply.* - It is supported on Python versions 2.3 through 3.2. - The latest stable version is coverage.py 3.5.1, `described here`_. + The latest version is coverage.py 3.6b1, released 28 Novermber 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`_. .. _described here: http://nedbatchelder.com/code/coverage diff --git a/doc/install.rst b/doc/install.rst index 8f5b68af..a2093c4f 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -14,6 +14,7 @@ Installation :history: 20120503T234000, updated for 3.5.2. :history: 20120929T093600, updated for 3.5.3. :history: 20121117T095000, Now setuptools is a pre-req. +:history: 20121128T203000, updated for 3.6b1. .. highlight:: console @@ -68,9 +69,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.5.3. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.6b1. http://nedbatchelder.com/code/coverage/3.6b1 You can also invoke coverage as a module:: $ python -m coverage --version - Coverage.py, version 3.5.3. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.6b1. http://nedbatchelder.com/code/coverage/3.6b1 @@ -11,6 +11,8 @@ Coverage.py runs on Pythons 2.3 through 3.3, and PyPy 1.8. Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue tracker are at `bitbucket.org <http://bitbucket.org/ned/coveragepy>`_. +New in 3.6: ``--fail-under``, and >20 bugs closed. + New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report. New in 3.4: Better control over source to measure, and unexecuted files |