From 7f27fa7810e494a75af08b54c4f97b94df7364f4 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 11 Jul 2024 12:37:52 -0400 Subject: [PATCH] docs: prep for 7.6.0 --- CHANGES.rst | 10 ++++++---- README.rst | 3 ++- coverage/version.py | 4 ++-- doc/conf.py | 6 +++--- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index dab72a26e..13e3c1eb9 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-6-0: + +Version 7.6.0 — 2024-07-11 +-------------------------- - Exclusion patterns can now be multi-line, thanks to `Daniel Diniz `_. This enables many interesting exclusion use-cases, including those @@ -49,8 +53,6 @@ Unreleased .. _pull 1807: https://github.com/nedbat/coveragepy/pull/1807 .. _pull 1809: https://github.com/nedbat/coveragepy/pull/1809 -.. scriv-start-here - .. _changes_7-5-4: Version 7.5.4 — 2024-06-22 diff --git a/README.rst b/README.rst index a9c8eb6a7..04df255ff 100644 --- a/README.rst +++ b/README.rst @@ -35,7 +35,8 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on .. _GitHub: https://github.com/nedbat/coveragepy **New in 7.x:** -initial function/class reporting; +multi-line exclusion patterns; +function/class reporting; experimental support for sys.monitoring; dropped support for Python 3.7; added ``Coverage.collect()`` context manager; diff --git a/coverage/version.py b/coverage/version.py index fae238809..f1f2993ba 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, 0, "alpha", 0) -_dev = 1 +version_info = (7, 6, 0, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index 60f84570f..3886abb7f 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.4" +version = "7.6.0" # The full version, including alpha/beta/rc tags. -release = "7.5.4" +release = "7.6.0" # The date of release, in "monthname day, year" format. -release_date = "June 22, 2024" +release_date = "July 11, 2024" # @@@ end rst_epilog = f"""