diff --git a/CHANGES.rst b/CHANGES.rst index b717b666f..c054a126c 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-2: + +Version 7.6.2 — 2024-10-09 +-------------------------- - Dropped support for Python 3.8 and PyPy 3.8. @@ -62,8 +66,6 @@ Unreleased .. _issue 1863: https://github.com/nedbat/coveragepy/issues/1863 -.. start-releases - .. _changes_7-6-1: Version 7.6.1 — 2024-08-04 diff --git a/README.rst b/README.rst index ab3d9e9d1..c12c3882d 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.12, and 3.13.0rc2, including free-threading. +* Python 3.9 through 3.13, 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 fea0c2175..5a5689b45 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, 2, "alpha", 0) -_dev = 1 +version_info = (7, 6, 2, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index 030a1a1c1..5212d6006 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.1" +version = "7.6.2" # The full version, including alpha/beta/rc tags. -release = "7.6.1" +release = "7.6.2" # The date of release, in "monthname day, year" format. -release_date = "August 4, 2024" +release_date = "October 9, 2024" # @@@ end rst_epilog = f""" diff --git a/doc/index.rst b/doc/index.rst index 2c8f33ac5..0abb95fbc 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,7 +18,7 @@ supported on: .. PYVERSIONS -* Python 3.9 through 3.12, and 3.13.0rc2, including free-threading. +* Python 3.9 through 3.13, including free-threading. * PyPy3 versions 3.9 and 3.10. .. ifconfig:: prerelease diff --git a/tox.ini b/tox.ini index a7708f36c..4d0c4c746 100644 --- a/tox.ini +++ b/tox.ini @@ -117,7 +117,7 @@ setenv = commands = # PYVERSIONS mypy --python-version=3.9 --exclude=sysmon {env:TYPEABLE} - mypy --python-version=3.12 {env:TYPEABLE} + mypy --python-version=3.13 {env:TYPEABLE} [gh] # https://pypi.org/project/tox-gh/