From 9e16381103085fd10bedb290f93a5ae64cbbc586 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 22 Jun 2024 17:10:57 -0400 Subject: [PATCH] docs: prep for 7.5.4 --- CHANGES.rst | 10 ++++++---- README.rst | 2 +- coverage/version.py | 4 ++-- doc/conf.py | 6 +++--- doc/index.rst | 2 +- 5 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 7037d3d9f..633f418c1 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-4: + +Version 7.5.4 — 2024-06-22 +-------------------------- - If you attempt to combine statement coverage data with branch coverage data, coverage.py used to fail with the message "Can't combine arc data with line @@ -39,8 +43,6 @@ Unreleased .. _issue 1799: https://github.com/nedbat/coveragepy/issues/1799 -.. scriv-start-here - .. _changes_7-5-3: Version 7.5.3 — 2024-05-28 diff --git a/README.rst b/README.rst index 0c5e56a19..a48d35133 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.0b1 and up. +* Python 3.8 through 3.12, and 3.13.0b2. * 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 a8d29d75b..77743953a 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, 4, "alpha", 0) -_dev = 2 +version_info = (7, 5, 4, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index acd3b2713..60f84570f 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.5.3" +version = "7.5.4" # The full version, including alpha/beta/rc tags. -release = "7.5.3" +release = "7.5.4" # The date of release, in "monthname day, year" format. -release_date = "May 28, 2024" +release_date = "June 22, 2024" # @@@ end rst_epilog = f""" diff --git a/doc/index.rst b/doc/index.rst index 128d78c53..9dd939690 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.0b1 and up. +* Python 3.8 through 3.12, and 3.13.0b2. * PyPy3 versions 3.8 through 3.10. .. ifconfig:: prerelease