Skip to content

Commit c9e9625

Browse files
committed
docs: prep for 7.10.1
1 parent e8193ff commit c9e9625

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

CHANGES.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,23 @@ 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-1:
26+
27+
Version 7.10.1 — 2025-07-27
28+
---------------------------
2529

2630
- Fix: the exclusion for ``if TYPE_CHECKING:`` was wrong: it marked the branch
2731
as partial, but it should have been a line exclusion so the entire clause
28-
would be excluded.
32+
would be excluded. Improves `issue 831`_.
2933

3034
- Fix: changed where .pth files are written for ``patch = subprocess``, closing
3135
`issue 2006`_.
3236

3337
.. _issue 2006: https://github.com/nedbat/coveragepy/issues/2006
3438

3539

36-
.. start-releases
37-
3840
.. _changes_7-10-0:
3941

4042
Version 7.10.0 — 2025-07-24

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

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)