Skip to content

Commit bbfd131

Browse files
committed
Prep for 5.2.1
1 parent 224c73e commit bbfd131

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

CHANGES.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
2222
.. ----------------------------
2323
2424
25-
Unreleased
26-
----------
25+
.. _changes_521:
26+
27+
Version 5.2.1 --- 2020-07-23
28+
----------------------------
2729

2830
- The dark mode HTML report still used light colors for the context listing,
2931
making them unreadable (`issue 1009`_). This is now fixed.

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ environment:
4747
- JOB: "3.8 64-bit"
4848
TOXENV: "py38"
4949
PYTHON: "C:\\Python38-x64"
50-
PYTHON_VERSION: "3.8.3"
50+
PYTHON_VERSION: "3.8.5"
5151
PYTHON_ARCH: "64"
5252

5353
- JOB: "3.9 64-bit"
5454
TOXENV: "py39"
5555
PYTHON: "C:\\Python39-x64"
56-
PYTHON_VERSION: "3.9.0b4"
56+
PYTHON_VERSION: "3.9.0b5"
5757
PYTHON_ARCH: "64"
5858

5959
# 32-bit jobs don't run the tests under the Python tracer, since that should
@@ -89,14 +89,14 @@ environment:
8989
- JOB: "3.8 32-bit"
9090
TOXENV: "py38"
9191
PYTHON: "C:\\Python38"
92-
PYTHON_VERSION: "3.8.3"
92+
PYTHON_VERSION: "3.8.5"
9393
PYTHON_ARCH: "32"
9494
COVERAGE_NO_PYTRACER: "1"
9595

9696
- JOB: "3.9 32-bit"
9797
TOXENV: "py39"
9898
PYTHON: "C:\\Python39"
99-
PYTHON_VERSION: "3.9.0b4"
99+
PYTHON_VERSION: "3.9.0b5"
100100
PYTHON_ARCH: "32"
101101
COVERAGE_NO_PYTRACER: "1"
102102

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, 2, 1, "alpha", 0)
8+
version_info = (5, 2, 1, "final", 0)
99

1010

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

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = '5.2' # CHANGEME
69+
version = "5.2.1" # CHANGEME
7070
# The full version, including alpha/beta/rc tags.
71-
release = '5.2' # CHANGEME
71+
release = "5.2.1" # CHANGEME
7272
# The date of release, in "monthname day, year" format.
73-
release_date = 'July 5, 2020' # CHANGEME
73+
release_date = "July 23, 2020" # CHANGEME
7474

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

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ supported on:
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.2, `described here`_.
26+
apply.** The latest stable version is coverage.py 5.2.1, `described here`_.
2727

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

0 commit comments

Comments
 (0)