summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-02-03 15:14:34 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-02-03 15:14:34 -0500
commitac76eb3d0d1a010cb4fa12408defc5e8db5099b9 (patch)
tree20695f7a324fa181903b7d5c0e4b013b2ee77b85
parent9b08ba29bcb2ec2b390088ce8c9f6ec3f398a47c (diff)
downloadpython-coveragepy-ac76eb3d0d1a010cb4fa12408defc5e8db5099b9.tar.gz
Version 4.5 paperwork
-rw-r--r--CHANGES.rst4
-rw-r--r--NOTICE.txt2
-rw-r--r--README.rst4
-rw-r--r--coverage/version.py2
-rw-r--r--doc/conf.py6
-rw-r--r--doc/index.rst3
-rw-r--r--howto.txt1
7 files changed, 12 insertions, 10 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index a9b5c1b..3c16bfb 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.
diff --git a/NOTICE.txt b/NOTICE.txt
index 6a228be..e5a9951 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -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
diff --git a/README.rst b/README.rst
index 2047e25..4dac3ea 100644
--- a/README.rst
+++ b/README.rst
@@ -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 2be9662..8054a18 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 ebffb4a..162ee33 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 19c8f90..acb45bf 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.
diff --git a/howto.txt b/howto.txt
index 97f817e..dc3a838 100644
--- a/howto.txt
+++ b/howto.txt
@@ -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