diff --git a/CHANGES.rst b/CHANGES.rst index b517c0ce2..98f632842 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,8 +21,10 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`. .. Version 9.8.1 --- 2027-07-27 .. ---------------------------- -Unreleased ----------- +.. _changes_54: + +Version 5.4 --- 2021-01-24 +-------------------------- - The text report produced by ``coverage report`` now always outputs a TOTAL line, even if only one Python file is reported. This makes regex parsing diff --git a/NOTICE.txt b/NOTICE.txt index 2e7671024..37ded535b 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ Copyright 2001 Gareth Rees. All rights reserved. -Copyright 2004-2020 Ned Batchelder. All rights reserved. +Copyright 2004-2021 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 7708e9c6c..66cd938a8 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ Coverage.py runs on many versions of Python: * CPython 2.7. * CPython 3.5 through 3.10 alpha. -* PyPy2 7.3.1 and PyPy3 7.3.1. +* PyPy2 7.3.3 and PyPy3 7.3.3. Documentation is on `Read the Docs`_. Code repository and issue tracker are on `GitHub`_. diff --git a/coverage/version.py b/coverage/version.py index f6340f423..8cc58dfb1 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 = (5, 3, 2, "alpha", 0) +version_info = (5, 4, 0, "final", 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 2fbf6c1e9..b76c0a235 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -59,18 +59,18 @@ # General information about the project. project = u'Coverage.py' -copyright = u'2009\N{EN DASH}2020, Ned Batchelder.' # CHANGEME # pylint: disable=redefined-builtin +copyright = u'2009\N{EN DASH}2021, Ned Batchelder.' # CHANGEME # pylint: disable=redefined-builtin # 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 = "5.3.1" # CHANGEME +version = "5.4" # CHANGEME # The full version, including alpha/beta/rc tags. -release = "5.3.1" # CHANGEME +release = "5.4" # CHANGEME # The date of release, in "monthname day, year" format. -release_date = "December 19, 2020" # CHANGEME +release_date = "January 24, 2021" # CHANGEME rst_epilog = """ .. |release_date| replace:: {release_date} diff --git a/doc/index.rst b/doc/index.rst index 0e7eb22ee..6f408b897 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,12 +18,12 @@ supported on: * Python versions 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, and 3.10 alpha. -* PyPy2 7.3.1 and PyPy3 7.3.1. +* PyPy2 7.3.3 and PyPy3 7.3.3. .. ifconfig:: prerelease **This is a pre-release build. The usual warnings about possible bugs - apply.** The latest stable version is coverage.py 5.3.1, `described here`_. + apply.** The latest stable version is coverage.py 5.4, `described here`_. .. _described here: http://coverage.readthedocs.io/ diff --git a/doc/python-coverage.1.txt b/doc/python-coverage.1.txt index a98954823..0bbd44d0a 100644 --- a/doc/python-coverage.1.txt +++ b/doc/python-coverage.1.txt @@ -2,13 +2,13 @@ python-coverage =============== -------------------------------------------------- -measure code coverage of Python program execution -------------------------------------------------- +---------------------------- +Measure Python code coverage +---------------------------- :Author: Ned Batchelder :Author: |author| -:Date: 2019-11-11 +:Date: 2021-01-24 :Copyright: Apache 2.0 license, attribution and disclaimer required. :Manual section: 1 :Manual group: Coverage.py