Skip to content

Commit e179cf6

Browse files
committed
build: prep for 6.0 release
1 parent 5a99516 commit e179cf6

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGES.rst

+4-2
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_60:
25+
26+
Version 6.0 --- 2021-10-03
27+
--------------------------
2628

2729
- The ``coverage html`` command now prints a message indicating where the HTML
2830
report was written. Fixes `issue 1195`_.

README.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ library to determine which lines are executable, and which have been executed.
1919

2020
Coverage.py runs on these versions of Python:
2121

22-
* CPython 3.6 through 3.10 alpha.
22+
* CPython 3.6 through 3.10.
2323
* PyPy3 7.3.3.
2424

2525
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
@@ -29,7 +29,8 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
2929
.. _GitHub: https://github.com/nedbat/coveragepy
3030

3131

32-
**New in 6.x:** dropped support for Python 2.7 and 3.5.
32+
**New in 6.x:** dropped support for Python 2.7 and 3.5; added support for 3.10
33+
match/case statements.
3334

3435

3536
For Enterprise

coverage/version.py

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

1010

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

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
# The short X.Y version.
6868
version = "6.0" # CHANGEME
6969
# The full version, including alpha/beta/rc tags.
70-
release = "6.0b1" # CHANGEME
70+
release = "6.0" # CHANGEME
7171
# The date of release, in "monthname day, year" format.
72-
release_date = "July 18, 2021" # CHANGEME
72+
release_date = "October 3, 2021" # CHANGEME
7373

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

doc/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ not.
1616
The latest version is coverage.py |release|, released |release_date|. It is
1717
supported on:
1818

19-
* Python versions 3.6, 3.7, 3.8, 3.9, and 3.10 alpha.
19+
* Python versions 3.6 through 3.10.
2020

2121
* 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.5, `described here`_.
26+
apply.** The latest stable version is coverage.py 6.0, `described here`_.
2727

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

0 commit comments

Comments
 (0)