From 96e10f791857b87d6a741cdbb3ea2c5a851432d5 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 20 Oct 2024 18:25:00 -0400 Subject: [PATCH] docs: prep for 7.6.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 bc879fb55..9679d7010 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 ----------- +.. start-releases + +.. _changes_7-6-4: + +Version 7.6.4 — 2024-10-20 +-------------------------- - fix: multi-line ``with`` statements could cause contained branches to be incorrectly marked as missing (`issue 1880`_). This is now fixed. @@ -29,8 +33,6 @@ Unreleased .. _issue 1880: https://github.com/nedbat/coveragepy/issues/1880 -.. start-releases - .. _changes_7-6-3: Version 7.6.3 — 2024-10-13 diff --git a/README.rst b/README.rst index 74a492a0d..2ba48d495 100644 --- a/README.rst +++ b/README.rst @@ -25,7 +25,7 @@ Coverage.py runs on these versions of Python: .. PYVERSIONS -* Python 3.9 through 3.13, including free-threading. +* Python 3.9 through 3.14 alpha 1, including free-threading. * PyPy3 versions 3.9 and 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 cba2b1b55..43e6f8c3c 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, 6, 4, "alpha", 0) -_dev = 1 +version_info = (7, 6, 4, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index 21f323d0a..9f74bbac6 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.6.3" +version = "7.6.4" # The full version, including alpha/beta/rc tags. -release = "7.6.3" +release = "7.6.4" # The date of release, in "monthname day, year" format. -release_date = "October 13, 2024" +release_date = "October 20, 2024" # @@@ end rst_epilog = f""" diff --git a/doc/index.rst b/doc/index.rst index 0abb95fbc..048261390 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,7 +18,7 @@ supported on: .. PYVERSIONS -* Python 3.9 through 3.13, including free-threading. +* Python 3.9 through 3.14 alpha 1, including free-threading. * PyPy3 versions 3.9 and 3.10. .. ifconfig:: prerelease