diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-02-10 13:07:13 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-02-10 13:07:13 -0500 |
commit | 0adb933d48838f9c88e4f35e6bacebd428d44a3a (patch) | |
tree | 22394ed9ce1447fb5ab61cb850ffbe716d715975 | |
parent | 297c2e6982aef90bc822a7af94939693cb8b36cd (diff) | |
download | python-coveragepy-git-0adb933d48838f9c88e4f35e6bacebd428d44a3a.tar.gz |
Making 4.5.1
-rw-r--r-- | CHANGES.rst | 8 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 3 |
4 files changed, 9 insertions, 6 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index e18f9dc7..e4243b9b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,8 +16,10 @@ Change history for Coverage.py .. ---------------------------- -Unreleased ----------- +.. _changes_451: + +Version 4.5.1 --- 2018-02-10 +---------------------------- - Now that 4.5 properly separated the ``[run] omit`` and ``[report] omit`` settings, an old bug has become apparent. If you specified a package name @@ -28,7 +30,7 @@ Unreleased docstring would crash coverage.py with an IndexError (`issue 640`_). This is now fixed. -- Configurer plugins are now being reported in the output of ``--debug=sys``. +- Configurer plugins are now reported in the output of ``--debug=sys``. .. _issue 638: https://bitbucket.org/ned/coveragepy/issues/638/run-omit-is-ignored-since-45 .. _issue 640: https://bitbucket.org/ned/coveragepy/issues/640/indexerror-reporting-on-an-empty-decorated diff --git a/coverage/version.py b/coverage/version.py index d74c1645..7dc59e27 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, 5, 1, 'alpha', 0) +version_info = (4, 5, 1, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 162ee331..08c88537 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,7 +58,7 @@ copyright = u'2009\N{EN DASH}2018, Ned Batchelder' # CHANGEME # The short X.Y version. version = '4.5' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '4.5' # CHANGEME +release = '4.5.1' # 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 acb45bf6..20658edd 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -51,6 +51,7 @@ Coverage.py .. :history: 20161226T160400, updated for 4.3 .. :history: 20170116T180100, updated for 4.3.2 .. :history: 20180203T130300, updated for 4.5 +.. :history: 20180210T125300, updated for 4.5.1 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -63,7 +64,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 4.5, released February 3rd 2018. It + The latest version is coverage.py 4.5.1, released February 10th 2018. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, and 3.7. |