summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-01-24 17:49:10 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-01-24 17:49:10 -0500
commit96ae2000a951267db71f23ead7aa63fab70af0e7 (patch)
tree3a80aacc5f93c6e6f40a14da9a8f9ec077cd0e06
parent6ce7b4e3fe716f4cf14922a518b64279110a3ff9 (diff)
downloadpython-coveragepy-git-96ae2000a951267db71f23ead7aa63fab70af0e7.tar.gz
Prep for 5.4
-rw-r--r--CHANGES.rst6
-rw-r--r--NOTICE.txt2
-rw-r--r--README.rst2
-rw-r--r--coverage/version.py2
-rw-r--r--doc/conf.py8
-rw-r--r--doc/index.rst4
-rw-r--r--doc/python-coverage.1.txt8
7 files changed, 17 insertions, 15 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index b517c0ce..98f63284 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 2e767102..37ded535 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 7708e9c6..66cd938a 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 f6340f42..8cc58dfb 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 2fbf6c1e..b76c0a23 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -59,18 +59,18 @@ master_doc = 'index'
# 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 0e7eb22e..6f408b89 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 a9895482..0bbd44d0 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 <ned@nedbatchelder.com>
: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