Skip to content

Commit

Permalink
Prep for 5.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 19, 2020
1 parent 37285cb commit 4ac95eb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
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_531:

Version 5.3.1 --- 2020-12-19
----------------------------

- When using ``--source`` on a large source tree, v5.x was slower than previous
versions. This performance regression is now fixed, closing `issue 1037`_.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ library to determine which lines are executable, and which have been executed.
Coverage.py runs on many versions of Python:

* CPython 2.7.
* CPython 3.5 through 3.9 beta.
* CPython 3.5 through 3.10 alpha.
* PyPy2 7.3.1 and PyPy3 7.3.1.

Documentation is on `Read the Docs`_. Code repository and issue tracker are on
Expand Down
2 changes: 1 addition & 1 deletion coverage/version.py
Original file line number Diff line number Diff line change
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, 1, "alpha", 0)
version_info = (5, 3, 1, "final", 0)


def _make_version(major, minor, micro, releaselevel, serial):
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@
# built documents.
#
# The short X.Y version.
version = "5.3" # CHANGEME
version = "5.3.1" # CHANGEME
# The full version, including alpha/beta/rc tags.
release = "5.3" # CHANGEME
release = "5.3.1" # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = "September 13, 2020" # CHANGEME
release_date = "December 19, 2020" # CHANGEME

rst_epilog = """
.. |release_date| replace:: {release_date}
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ not.
The latest version is coverage.py |release|, released |release_date|. It is
supported on:

* Python versions 2.7, 3.5, 3.6, 3.7, 3.8, and 3.9 beta.
* 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.

.. ifconfig:: prerelease

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

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

Expand Down

0 comments on commit 4ac95eb

Please sign in to comment.