Skip to content

Commit 96ae200

Browse files
committed
Prep for 5.4
1 parent 6ce7b4e commit 96ae200

File tree

7 files changed

+17
-15
lines changed

7 files changed

+17
-15
lines changed

CHANGES.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
2121
.. Version 9.8.1 --- 2027-07-27
2222
.. ----------------------------
2323
24-
Unreleased
25-
----------
24+
.. _changes_54:
25+
26+
Version 5.4 --- 2021-01-24
27+
--------------------------
2628

2729
- The text report produced by ``coverage report`` now always outputs a TOTAL
2830
line, even if only one Python file is reported. This makes regex parsing

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright 2001 Gareth Rees. All rights reserved.
2-
Copyright 2004-2020 Ned Batchelder. All rights reserved.
2+
Copyright 2004-2021 Ned Batchelder. All rights reserved.
33

44
Except where noted otherwise, this software is licensed under the Apache
55
License, Version 2.0 (the "License"); you may not use this work except in

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Coverage.py runs on many versions of Python:
2121

2222
* CPython 2.7.
2323
* CPython 3.5 through 3.10 alpha.
24-
* PyPy2 7.3.1 and PyPy3 7.3.1.
24+
* PyPy2 7.3.3 and PyPy3 7.3.3.
2525

2626
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
2727
`GitHub`_.

coverage/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This file is exec'ed in setup.py, don't import anything!
66

77
# Same semantics as sys.version_info.
8-
version_info = (5, 3, 2, "alpha", 0)
8+
version_info = (5, 4, 0, "final", 0)
99

1010

1111
def _make_version(major, minor, micro, releaselevel, serial):

doc/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,18 @@
5959

6060
# General information about the project.
6161
project = u'Coverage.py'
62-
copyright = u'2009\N{EN DASH}2020, Ned Batchelder.' # CHANGEME # pylint: disable=redefined-builtin
62+
copyright = u'2009\N{EN DASH}2021, Ned Batchelder.' # CHANGEME # pylint: disable=redefined-builtin
6363

6464
# The version info for the project you're documenting, acts as replacement for
6565
# |version| and |release|, also used in various other places throughout the
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = "5.3.1" # CHANGEME
69+
version = "5.4" # CHANGEME
7070
# The full version, including alpha/beta/rc tags.
71-
release = "5.3.1" # CHANGEME
71+
release = "5.4" # CHANGEME
7272
# The date of release, in "monthname day, year" format.
73-
release_date = "December 19, 2020" # CHANGEME
73+
release_date = "January 24, 2021" # CHANGEME
7474

7575
rst_epilog = """
7676
.. |release_date| replace:: {release_date}

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ supported on:
1818

1919
* Python versions 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, and 3.10 alpha.
2020

21-
* PyPy2 7.3.1 and PyPy3 7.3.1.
21+
* PyPy2 7.3.3 and PyPy3 7.3.3.
2222

2323
.. ifconfig:: prerelease
2424

2525
**This is a pre-release build. The usual warnings about possible bugs
26-
apply.** The latest stable version is coverage.py 5.3.1, `described here`_.
26+
apply.** The latest stable version is coverage.py 5.4, `described here`_.
2727

2828
.. _described here: http://coverage.readthedocs.io/
2929

doc/python-coverage.1.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
python-coverage
33
===============
44

5-
-------------------------------------------------
6-
measure code coverage of Python program execution
7-
-------------------------------------------------
5+
----------------------------
6+
Measure Python code coverage
7+
----------------------------
88

99
:Author: Ned Batchelder <ned@nedbatchelder.com>
1010
:Author: |author|
11-
:Date: 2019-11-11
11+
:Date: 2021-01-24
1212
:Copyright: Apache 2.0 license, attribution and disclaimer required.
1313
:Manual section: 1
1414
:Manual group: Coverage.py

0 commit comments

Comments
 (0)