diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-05-07 18:38:59 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-05-07 18:38:59 -0400 |
commit | 35ba0abe83e4102949756520fe257ea18ac3fcb9 (patch) | |
tree | bce49b91fc635121b231c04098d9cbdae65acad5 | |
parent | 736c63fd0d4978342fb99ad77821ef6131d304aa (diff) | |
download | python-coveragepy-git-35ba0abe83e4102949756520fe257ea18ac3fcb9.tar.gz |
prep for v4.4
-rw-r--r-- | CHANGES.rst | 4 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 4 |
5 files changed, 8 insertions, 6 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index cbd69604..686a1931 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,8 +7,8 @@ Change history for Coverage.py .. _changes_44: -Unreleased ----------- +Version 4.4 --- 2017-05-07 +-------------------------- - Reports could produce the wrong file names for packages, reporting ``pkg.py`` instead of the correct ``pkg/__init__.py``. This is now fixed. Thanks, Dirk @@ -97,7 +97,7 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_. :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.4.svg - :target: https://github.com/nedbat/coveragepy/compare/coverage-4.3.4...master + :target: https://github.com/nedbat/coveragepy/compare/coverage-4.4...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 92a3bcbb..f0a2fd4d 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, 4, 0, 'beta', 2) +version_info = (4, 4, 0, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 5d63eb18..70b124d2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,7 +58,7 @@ copyright = u'2009\N{EN DASH}2017, Ned Batchelder' # CHANGEME # The short X.Y version. version = '4.4' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '4.4b1' # CHANGEME +release = '4.4' # 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 1b438c3b..fb5da18e 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -62,7 +62,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 4.3.4, released January 17th 2017. It + The latest version is coverage.py 4.4, released May 7th 2017. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6. @@ -71,6 +71,8 @@ not. * Jython 2.7.1, though only for running code, not reporting. + * IronPython 2.7.7, though only for running code, not reporting. + .. ifconfig:: prerelease The latest version is coverage.py 4.4b1, released April 4th 2017. It is |