Skip to content

Commit

Permalink
Prep for 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jan 24, 2021
1 parent 6ce7b4e commit 96ae200
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -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`_.
Expand Down
2 changes: 1 addition & 1 deletion coverage/version.py
Expand Up @@ -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):
Expand Down
8 changes: 4 additions & 4 deletions doc/conf.py
Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Expand Up @@ -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/

Expand Down
8 changes: 4 additions & 4 deletions doc/python-coverage.1.txt
Expand Up @@ -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
Expand Down

0 comments on commit 96ae200

Please sign in to comment.