diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-16 18:12:01 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-16 18:12:01 -0500 |
commit | 2691b9dc487ec44045c67933a0c941c299b0aef1 (patch) | |
tree | fb000b06db34bca9cb16791493f15a48798f079e | |
parent | 7c5f1dca34797c838a369ca88651fe12324eadb9 (diff) | |
download | python-coveragepy-git-2691b9dc487ec44045c67933a0c941c299b0aef1.tar.gz |
Prep for version 4.3.2
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 6 | ||||
-rw-r--r-- | doc/index.rst | 9 | ||||
-rw-r--r-- | howto.txt | 1 | ||||
-rw-r--r-- | setup.py | 1 |
7 files changed, 17 insertions, 12 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 459f82ff..c05685d4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,8 +6,10 @@ Change history for Coverage.py ============================== -Unreleased ----------- +.. _changes_432: + +Version 4.3.2 --- 2017-01-16 +---------------------------- - Using the ``--skip-covered`` option on an HTML report with 100% coverage would cause a "No data to report" error, as reported in `issue 549`_. This is @@ -83,8 +83,8 @@ For details, see https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt. .. |codecov| image:: http://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master :target: http://codecov.io/github/nedbat/coveragepy?branch=master :alt: Coverage! -.. |commits-since| image:: https://img.shields.io/github/commits-since/nedbat/coveragepy/coverage-4.3.1.svg - :target: https://github.com/nedbat/coveragepy/compare/coverage-4.3.1...master +.. |commits-since| image:: https://img.shields.io/github/commits-since/nedbat/coveragepy/coverage-4.3.2.svg + :target: https://github.com/nedbat/coveragepy/compare/coverage-4.3.2...master :alt: See latest work .. |saythanks| image:: https://img.shields.io/badge/saythanks.io-%E2%98%BC-1EAEDB.svg :target: https://saythanks.io/to/nedbat diff --git a/coverage/version.py b/coverage/version.py index ab5a3445..7ba485b0 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -5,7 +5,7 @@ # This file is exec'ed in setup.py, don't import anything! # Same semantics as sys.version_info. -version_info = (4, 3, 2, 'alpha', 0) +version_info = (4, 3, 2, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index febade3a..55e11872 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,16 +49,16 @@ master_doc = 'index' # General information about the project. project = u'Coverage.py' -copyright = u'2009\N{EN DASH}2017, Ned Batchelder' +copyright = u'2009\N{EN DASH}2017, Ned Batchelder' # CHANGEME # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '4.3.1' +version = '4.3.2' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '4.3.1' +release = '4.3.2' # CHANGEME # 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 a39fb359..7d687cb3 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -49,6 +49,7 @@ Coverage.py .. :history: 20160521T074500, updated for 4.1 .. :history: 20160726T161300, updated for 4.2 .. :history: 20161226T160400, updated for 4.3 +.. :history: 20170116T180100, updated for 4.3.2 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -61,14 +62,14 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 4.3.1, released December 28th 2016. It + The latest version is coverage.py 4.3.2, released January 16th 2017. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6. - * PyPy 5.6. + * PyPy2 5.6 and PyPy3 5.5. - * PyPy3 5.5 + * Jython 2.7.1, though only for running code, not reporting. .. ifconfig:: prerelease @@ -79,7 +80,7 @@ not. * PyPy2 5.6 and PyPy3 5.5. - * Jython 2.7.1 beta, though only for running code, not reporting. + * Jython 2.7.1, though only for running code, not reporting. **This is a pre-release build. The usual warnings about possible bugs apply.** The latest stable version is coverage.py 4.2, `described here`_. @@ -14,6 +14,7 @@ - Update docs - Version, date and python versions in doc/index.rst - Version and copyright date in doc/conf.py + - Look for CHANGEME comments - Don't forget the man page: doc/python-coverage.1.txt - Check that the docs build correctly: $ tox -e doc @@ -30,6 +30,7 @@ Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy +Programming Language :: Python :: Implementation :: Jython Topic :: Software Development :: Quality Assurance Topic :: Software Development :: Testing """ |