diff options
-rw-r--r-- | CHANGES.rst | 4 | ||||
-rw-r--r-- | NOTICE.txt | 2 | ||||
-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 | 3 | ||||
-rw-r--r-- | howto.txt | 1 |
7 files changed, 12 insertions, 10 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index a9b5c1bf..3c16bfb6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,8 +5,8 @@ Change history for Coverage.py ============================== -Unreleased ----------- +Version 4.5 --- 2018-02-03 +-------------------------- - A new kind of plugin is supported: configurators are invoked at start-up to allow more complex configuration than the .coveragerc file can easily do. @@ -1,5 +1,5 @@ Copyright 2001 Gareth Rees. All rights reserved. -Copyright 2004-2017 Ned Batchelder. All rights reserved. +Copyright 2004-2018 Ned Batchelder. All rights reserved. Except where noted otherwise, this software is licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in @@ -32,7 +32,9 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on .. _GitHub: https://github.com/nedbat/coveragepy -**New in 4.4:** Suppressable warnings, continuous coverage measurement. +**New in 4.5:** Configurator plug-ins. + +New in 4.4: Suppressable warnings, continuous coverage measurement. New in 4.3: HTML ``--skip-covered``, sys.excepthook support, tox.ini support. diff --git a/coverage/version.py b/coverage/version.py index 2be96620..8054a18d 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, 0, 'alpha', 0) +version_info = (4, 5, 0, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index ebffb4a7..162ee331 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' # CHANGEME +copyright = u'2009\N{EN DASH}2018, 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.4' # CHANGEME +version = '4.5' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '4.4.2' # CHANGEME +release = '4.5' # 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 19c8f90a..acb45bf6 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -50,6 +50,7 @@ Coverage.py .. :history: 20160726T161300, updated for 4.2 .. :history: 20161226T160400, updated for 4.3 .. :history: 20170116T180100, updated for 4.3.2 +.. :history: 20180203T130300, updated for 4.5 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -62,7 +63,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 4.4.2, released November 5th 2017. It + The latest version is coverage.py 4.5, released February 3rd 2018. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, and 3.7. @@ -10,7 +10,6 @@ - Update CHANGES.rst, including release date. - Update README.rst - "New in x.y:" - - version number in the commits-since badge - Update docs - Version, date and python versions in doc/index.rst - Version and copyright date in doc/conf.py |