diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-22 09:32:59 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-22 09:32:59 -0400 |
commit | 903614bfea14fb3c5f8bb828c1a2675d81526ced (patch) | |
tree | 51111c142e557487dc719a77e01aeaf5ecf3d1e6 | |
parent | 7fbed893087d7d036813defef3b3d3afef00a052 (diff) | |
download | python-coveragepy-git-903614bfea14fb3c5f8bb828c1a2675d81526ced.tar.gz |
Update details for 4.0b2
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | doc/changes.rst | 7 | ||||
-rw-r--r-- | doc/index.rst | 5 | ||||
-rw-r--r-- | howto.txt | 3 | ||||
-rw-r--r-- | setup.py | 2 |
5 files changed, 12 insertions, 9 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 0157abf8..b464d6b8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,8 +6,8 @@ Change history for Coverage.py ============================== -Latest ------- +Version 4.0b2 --- 22 August 2015 +-------------------------------- - 4.0b1 broke --append creating new data files. This is now fixed, closing `issue 392`_. diff --git a/doc/changes.rst b/doc/changes.rst index 4feb12b2..510353a6 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -31,7 +31,8 @@ Major change history for coverage.py .. :history: 20131005T205700, updated for 3.7 .. :history: 20131212T213100, updated for 3.7.1 .. :history: 20150124T134800, updated for 4.0a4 -.. :history: 20150902T174700, updated for 4.0b1 +.. :history: 20150802T174700, updated for 4.0b1 +.. :history: 20150822T092800, updated for 4.0b2 These are the major changes for coverage.py. For a more complete change @@ -43,8 +44,8 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _changes_40: -Version 4.0b1 pre-release --- 2 August 2015 -------------------------------------------- +Version 4.0b2 pre-release --- 22 August 2015 +-------------------------------------------- Backward incompatibilities: diff --git a/doc/index.rst b/doc/index.rst index f5e134cd..74dcb8e2 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -38,6 +38,7 @@ Coverage.py .. :history: 20150124T023900, Updated for 4.0a4 .. :history: 20150216T201000, Updated for 4.0a5 .. :history: 20150802T160200, Updated for 4.0b1 +.. :history: 20150822T092900, Updated for 4.0b2 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -55,8 +56,8 @@ not. .. ifconfig:: prerelease - The latest version is coverage.py 4.0b1, released 2 August 2015. - It is supported on Python versions 2.6, 2.7, 3.3, 3.4, and 3.5b4, as well + The latest version is coverage.py 4.0b2, released 22 August 2015. + It is supported on Python versions 2.6, 2.7, 3.3, 3.4, and 3.5c1, as well as PyPy 2.4 and 2.6, and PyPy3 2.4. **This is a pre-release build. The usual warnings about possible bugs apply.** The latest stable version is coverage.py 3.7.1, `described here`_. @@ -7,7 +7,7 @@ - Pythons 2.6, 2.7, 3.3, 3.4 - Version number in coverage/version.py - 3.1a1, 3.1b1, 3.1c1, 3.1 -- Copyright date in coverage/__init__.py +- Copyright date in NOTICE.txt - Update CHANGES.txt, including release date. - Update docstring in setup.py, including "New in x.y:" - Update docs @@ -15,6 +15,7 @@ - Version and date in doc/index.rst - Version and copyright date in doc/conf.py - Don't forget the man page: doc/python-coverage.1.txt + - done with changes to source files, check them in. - Generate new sample_html to get the latest, incl footer version number: pip install -e . cd ~/cog/trunk @@ -17,7 +17,7 @@ mirrored repository on `GitHub <https://github.com/nedbat/coveragepy>`_. New in 4.0 beta: ``--concurrency``, dropped support for older Pythons, setup.cfg support, plugins for other file variants, supported data API, ---skip-covered, HTML filtering, and 49 issues closed. +--skip-covered, HTML filtering, and 52 issues closed. """ # This file is used unchanged under all versions of Python, 2.x and 3.x. |