diff --git a/CHANGES.rst b/CHANGES.rst index 2a5deea4e..9aad1decf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -20,8 +20,12 @@ upgrading your version of coverage.py. .. Version 9.8.1 — 2027-07-27 .. -------------------------- -Unreleased ----------- +.. scriv-start-here + +.. _changes_7-5-0: + +Version 7.5.0 — 2024-04-23 +-------------------------- - Added initial support for function and class reporting in the HTML report. There are now three index pages which link to each other: files, functions, @@ -44,14 +48,12 @@ Unreleased and is renamed from "attempted_config_files" to the more logical "config_files_attempted." -- Python 3.13.0a5 is supported. +- Python 3.13.0a6 is supported. .. _issue 1384: https://github.com/nedbat/coveragepy/issues/1384 .. _issue 1765: https://github.com/nedbat/coveragepy/issues/1765 -.. scriv-start-here - .. _changes_7-4-4: Version 7.4.4 — 2024-03-14 diff --git a/README.rst b/README.rst index f21e9b52c..dabdc84fc 100644 --- a/README.rst +++ b/README.rst @@ -25,7 +25,7 @@ Coverage.py runs on these versions of Python: .. PYVERSIONS -* Python 3.8 through 3.12, and 3.13.0a3 and up. +* Python 3.8 through 3.12, and 3.13.0a6 and up. * PyPy3 versions 3.8 through 3.10. Documentation is on `Read the Docs`_. Code repository and issue tracker are on diff --git a/coverage/version.py b/coverage/version.py index bce1ee972..06cddd019 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -8,8 +8,8 @@ # version_info: same semantics as sys.version_info. # _dev: the .devN suffix if any. -version_info = (7, 5, 0, "alpha", 1) -_dev = 1 +version_info = (7, 5, 0, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index 5bdcca17b..e9f6d080c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -67,11 +67,11 @@ # @@@ editable copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin # The short X.Y.Z version. -version = "7.4.4" +version = "7.5.0" # The full version, including alpha/beta/rc tags. -release = "7.4.4" +release = "7.5.0" # The date of release, in "monthname day, year" format. -release_date = "March 14, 2024" +release_date = "April 23, 2024" # @@@ end rst_epilog = f""" diff --git a/doc/index.rst b/doc/index.rst index 9ebcde8c5..4a49ed360 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,7 +18,7 @@ supported on: .. PYVERSIONS -* Python 3.8 through 3.12, and 3.13.0a3 and up. +* Python 3.8 through 3.12, and 3.13.0a6 and up. * PyPy3 versions 3.8 through 3.10. .. ifconfig:: prerelease