Skip to content

Commit 952afda

Browse files
committed
docs: prep for 7.10.7
1 parent a301761 commit 952afda

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

CHANGES.rst

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,17 @@ 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-10-7:
26+
27+
Version 7.10.7 — 2025-09-21
28+
---------------------------
2529

2630
- Performance: with branch coverage in large files, generating HTML, JSON, or
27-
LCOV reports could take far too long due to some quadratic behavior. This is
28-
now fixed, closing `issue 2048`_. Thanks to Daniel Diniz for help diagnosing
29-
the problem.
31+
LCOV reports could take far too long due to some quadratic behavior when
32+
creating the function and class index pages. This is now fixed, closing
33+
`issue 2048`_. Thanks to Daniel Diniz for help diagnosing the problem.
3034

3135
- Most warnings and a few errors now have links to a page in the docs
3236
explaining the specific message. Closes `issue 1921`_.
@@ -35,8 +39,6 @@ Unreleased
3539
.. _issue 2048: https://github.com/nedbat/coveragepy/issues/2048
3640

3741

38-
.. start-releases
39-
4042
.. _changes_7-10-6:
4143

4244
Version 7.10.6 — 2025-08-29

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, 10, 7, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 10, 7, "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.10.6"
70+
version = "7.10.7"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.10.6"
72+
release = "7.10.7"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "August 29, 2025"
74+
release_date = "September 21, 2025"
7575
# @@@ end
7676

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)