Skip to content

Commit 1f5beeb

Browse files
committedApr 28, 2023
docs: prep for 7.2.4
1 parent ee6506f commit 1f5beeb

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed
 

‎CHANGES.rst

+8-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,14 @@ development at the same time, such as 4.5.x and 5.0.
1717
.. Version 9.8.1 — 2027-07-27
1818
.. --------------------------
1919
20-
Unreleased
21-
----------
20+
.. scriv-start-here
21+
22+
.. _changes_7-2-4:
23+
24+
Version 7.2.4 — 2023-04-28
25+
--------------------------
26+
27+
PyCon 2023 sprint fixes!
2228

2329
- Fix: with ``relative_files = true``, specifying a specific file to include or
2430
omit wouldn't work correctly (`issue 1604`_). This is now fixed, with
@@ -45,7 +51,6 @@ Unreleased
4551
.. _pull 1610: https://github.com/nedbat/coveragepy/pull/1610
4652
.. _pull 1613: https://github.com/nedbat/coveragepy/pull/1613
4753

48-
.. scriv-start-here
4954

5055
.. _changes_7-2-3:
5156

‎coverage/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
# version_info: same semantics as sys.version_info.
1010
# _dev: the .devN suffix if any.
11-
version_info = (7, 2, 4, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 2, 4, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

‎doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@
6666
# @@@ editable
6767
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
6868
# The short X.Y.Z version.
69-
version = "7.2.3"
69+
version = "7.2.4"
7070
# The full version, including alpha/beta/rc tags.
71-
release = "7.2.3"
71+
release = "7.2.4"
7272
# The date of release, in "monthname day, year" format.
73-
release_date = "April 6, 2023"
73+
release_date = "April 28, 2023"
7474
# @@@ end
7575

7676
rst_epilog = """

‎tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ commands =
6666
- sphinx-build -b html -b linkcheck -aEnQW doc doc/_build/html
6767

6868
[testenv:lint]
69-
# PYVERSIONS
69+
# Minimum of PYVERSIONS
7070
basepython = python3.7
7171
deps =
7272
-r requirements/lint.pip

0 commit comments

Comments
 (0)