From 1f5beeb706696f91955b68723fd8b8ffc7570f3c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 28 Apr 2023 05:33:23 -0400 Subject: docs: prep for 7.2.4 --- CHANGES.rst | 11 ++++++++--- coverage/version.py | 4 ++-- doc/conf.py | 6 +++--- tox.ini | 2 +- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 377cabc1..22ff98df 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,8 +17,14 @@ development at the same time, such as 4.5.x and 5.0. .. Version 9.8.1 — 2027-07-27 .. -------------------------- -Unreleased ----------- +.. scriv-start-here + +.. _changes_7-2-4: + +Version 7.2.4 — 2023-04-28 +-------------------------- + +PyCon 2023 sprint fixes! - Fix: with ``relative_files = true``, specifying a specific file to include or omit wouldn't work correctly (`issue 1604`_). This is now fixed, with @@ -45,7 +51,6 @@ Unreleased .. _pull 1610: https://github.com/nedbat/coveragepy/pull/1610 .. _pull 1613: https://github.com/nedbat/coveragepy/pull/1613 -.. scriv-start-here .. _changes_7-2-3: diff --git a/coverage/version.py b/coverage/version.py index d9f10f4c..d878ebc1 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -8,8 +8,8 @@ from __future__ import annotations # version_info: same semantics as sys.version_info. # _dev: the .devN suffix if any. -version_info = (7, 2, 4, "alpha", 0) -_dev = 1 +version_info = (7, 2, 4, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index f6310b57..f0b2d6e4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -66,11 +66,11 @@ project = 'Coverage.py' # @@@ editable copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin # The short X.Y.Z version. -version = "7.2.3" +version = "7.2.4" # The full version, including alpha/beta/rc tags. -release = "7.2.3" +release = "7.2.4" # The date of release, in "monthname day, year" format. -release_date = "April 6, 2023" +release_date = "April 28, 2023" # @@@ end rst_epilog = """ diff --git a/tox.ini b/tox.ini index ebc99816..e5a9db8c 100644 --- a/tox.ini +++ b/tox.ini @@ -66,7 +66,7 @@ commands = - sphinx-build -b html -b linkcheck -aEnQW doc doc/_build/html [testenv:lint] -# PYVERSIONS +# Minimum of PYVERSIONS basepython = python3.7 deps = -r requirements/lint.pip -- cgit v1.2.1