Skip to content

Commit 9e16381

Browse files
committed
docs: prep for 7.5.4
1 parent fba9b9e commit 9e16381

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

CHANGES.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@ upgrading your version of coverage.py.
2020
.. Version 9.8.1 — 2027-07-27
2121
.. --------------------------
2222
23-
Unreleased
24-
----------
23+
.. scriv-start-here
24+
25+
.. _changes_7-5-4:
26+
27+
Version 7.5.4 — 2024-06-22
28+
--------------------------
2529

2630
- If you attempt to combine statement coverage data with branch coverage data,
2731
coverage.py used to fail with the message "Can't combine arc data with line
@@ -39,8 +43,6 @@ Unreleased
3943
.. _issue 1799: https://github.com/nedbat/coveragepy/issues/1799
4044

4145

42-
.. scriv-start-here
43-
4446
.. _changes_7-5-3:
4547

4648
Version 7.5.3 — 2024-05-28

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Coverage.py runs on these versions of Python:
2525

2626
.. PYVERSIONS
2727
28-
* Python 3.8 through 3.12, and 3.13.0b1 and up.
28+
* Python 3.8 through 3.12, and 3.13.0b2.
2929
* PyPy3 versions 3.8 through 3.10.
3030

3131
Documentation is on `Read the Docs`_. Code repository and issue tracker are on

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, 5, 4, "alpha", 0)
12-
_dev = 2
11+
version_info = (7, 5, 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
@@ -67,11 +67,11 @@
6767
# @@@ editable
6868
copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin
6969
# The short X.Y.Z version.
70-
version = "7.5.3"
70+
version = "7.5.4"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.5.3"
72+
release = "7.5.4"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "May 28, 2024"
74+
release_date = "June 22, 2024"
7575
# @@@ end
7676

7777
rst_epilog = f"""

doc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ supported on:
1818

1919
.. PYVERSIONS
2020
21-
* Python 3.8 through 3.12, and 3.13.0b1 and up.
21+
* Python 3.8 through 3.12, and 3.13.0b2.
2222
* PyPy3 versions 3.8 through 3.10.
2323

2424
.. ifconfig:: prerelease

0 commit comments

Comments
 (0)