Skip to content

Commit a670927

Browse files
committed
docs: prep for 7.9.0
1 parent 3b0cb87 commit a670927

File tree

8 files changed

+22
-19
lines changed

8 files changed

+22
-19
lines changed

.github/workflows/kit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
- {"os": "windows", "py": "cp311", "arch": "ARM64", "os-version": "11-arm", "minpy": "3.11"}
150150
- {"os": "windows", "py": "cp312", "arch": "ARM64", "os-version": "11-arm", "minpy": "3.11"}
151151
- {"os": "windows", "py": "cp313", "arch": "ARM64", "os-version": "11-arm", "minpy": "3.11"}
152-
# [[[end]]] (checksum: ce8e88f33d7db22f1e21a767e3256a00)
152+
# [[[end]]] (sum: zo6I8z19si)
153153
# ^^^^^^^^
154154
# If a check fails and points to this checksum line, it means you edited
155155
# the matrix directly instead of editing the Python code in the comment

CHANGES.rst

Lines changed: 9 additions & 7 deletions
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+
.. start-releases
24+
25+
.. _changes_7-9-0:
26+
27+
Version 7.9.0 — 2025-06-11
28+
--------------------------
2529

2630
- Added a ``[run] core`` configuration setting to specify the measurement core,
2731
which was previously only available through the COVERAGE_CORE environment
@@ -30,12 +34,12 @@ Unreleased
3034
- Fixed incorrect rendering of f-strings with doubled braces, closing `issue
3135
1980`_.
3236

33-
- The C tracer core extension module now conforms to `PEP 489`_, closing `issue
34-
1977`_. Thanks, `Adam Turner <pull 1978_>`_.
35-
3637
- If the C tracer core can't be imported, a warning ("no-ctracer") is issued
3738
with the reason.
3839

40+
- The C tracer core extension module now conforms to `PEP 489`_, closing `issue
41+
1977`_. Thanks, `Adam Turner <pull 1978_>`_.
42+
3943
- Fixed a "ValueError: min() arg is an empty sequence" error caused by strange
4044
empty modules, found by `oss-fuzz`_.
4145

@@ -47,8 +51,6 @@ Unreleased
4751
.. _oss-fuzz: https://google.github.io/oss-fuzz/
4852

4953

50-
.. start-releases
51-
5254
.. _changes_7-8-2:
5355

5456
Version 7.8.2 — 2025-05-23

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Coverage.py runs on these versions of Python:
2626

2727
.. PYVERSIONS
2828
29-
* Python 3.9 through 3.14 beta 1, including free-threading.
29+
* Python 3.9 through 3.14 beta 2, including free-threading.
3030
* PyPy3 versions 3.9, 3.10, and 3.11.
3131

3232
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
@@ -36,6 +36,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
3636
.. _GitHub: https://github.com/nedbat/coveragepy
3737

3838
**New in 7.x:**
39+
``[run] core`` setting;
3940
``[run] source_dirs`` setting;
4041
``Coverage.branch_stats()``;
4142
multi-line exclusion patterns;

coverage/htmlfiles/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ kbd { border: 1px solid black; border-color: #888 #333 #333 #888; padding: .1em
200200

201201
#source p .t .key { font-weight: bold; line-height: 1px; }
202202

203-
#source p .t .str { color: #0451a5; }
203+
#source p .t .str, #source p .t .fst { color: #0451a5; }
204204

205-
@media (prefers-color-scheme: dark) { #source p .t .str { color: #9cdcfe; } }
205+
@media (prefers-color-scheme: dark) { #source p .t .str, #source p .t .fst { color: #9cdcfe; } }
206206

207207
#source p.mis .t { border-left: 0.2em solid #ff0000; }
208208

coverage/version.py

Lines changed: 2 additions & 2 deletions
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, 9, 0, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 9, 0, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@
6767
# @@@ editable
6868
copyright = "2009–2025, Ned Batchelder" # pylint: disable=redefined-builtin
6969
# The short X.Y.Z version.
70-
version = "7.8.2"
70+
version = "7.9.0"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.8.2"
72+
release = "7.9.0"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "May 23, 2025"
74+
release_date = "June 11, 2025"
7575
# @@@ end
7676

7777
rst_epilog = f"""

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ supported on:
1818

1919
.. PYVERSIONS
2020
21-
* Python 3.9 through 3.14 beta 1, including free-threading.
21+
* Python 3.9 through 3.14 beta 2, including free-threading.
2222
* PyPy3 versions 3.9, 3.10, and 3.11.
2323

2424
.. ifconfig:: prerelease

tests/gold/html/styled/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ kbd { border: 1px solid black; border-color: #888 #333 #333 #888; padding: .1em
200200

201201
#source p .t .key { font-weight: bold; line-height: 1px; }
202202

203-
#source p .t .str { color: #0451a5; }
203+
#source p .t .str, #source p .t .fst { color: #0451a5; }
204204

205-
@media (prefers-color-scheme: dark) { #source p .t .str { color: #9cdcfe; } }
205+
@media (prefers-color-scheme: dark) { #source p .t .str, #source p .t .fst { color: #9cdcfe; } }
206206

207207
#source p.mis .t { border-left: 0.2em solid #ff0000; }
208208

0 commit comments

Comments
 (0)