Skip to content

Commit

Permalink
Prep for 5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jul 23, 2020
1 parent 224c73e commit bbfd131
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
.. ----------------------------
Unreleased
----------
.. _changes_521:

Version 5.2.1 --- 2020-07-23
----------------------------

- The dark mode HTML report still used light colors for the context listing,
making them unreadable (`issue 1009`_). This is now fixed.
Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ environment:
- JOB: "3.8 64-bit"
TOXENV: "py38"
PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.3"
PYTHON_VERSION: "3.8.5"
PYTHON_ARCH: "64"

- JOB: "3.9 64-bit"
TOXENV: "py39"
PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: "3.9.0b4"
PYTHON_VERSION: "3.9.0b5"
PYTHON_ARCH: "64"

# 32-bit jobs don't run the tests under the Python tracer, since that should
Expand Down Expand Up @@ -89,14 +89,14 @@ environment:
- JOB: "3.8 32-bit"
TOXENV: "py38"
PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.3"
PYTHON_VERSION: "3.8.5"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

- JOB: "3.9 32-bit"
TOXENV: "py39"
PYTHON: "C:\\Python39"
PYTHON_VERSION: "3.9.0b4"
PYTHON_VERSION: "3.9.0b5"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"

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, 2, 1, "alpha", 0)
version_info = (5, 2, 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.2' # CHANGEME
version = "5.2.1" # CHANGEME
# The full version, including alpha/beta/rc tags.
release = '5.2' # CHANGEME
release = "5.2.1" # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = 'July 5, 2020' # CHANGEME
release_date = "July 23, 2020" # CHANGEME

rst_epilog = """
.. |release_date| replace:: {release_date}
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ supported on:
.. ifconfig:: prerelease

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

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

Expand Down

0 comments on commit bbfd131

Please sign in to comment.