Skip to content

Commit 34c9aca

Browse files
committed
docs: prep for 7.10.3
1 parent fd83f21 commit 34c9aca

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

CHANGES.rst

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +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-3:
26+
27+
Version 7.10.3 — 2025-08-10
28+
---------------------------
2529

2630
- Fixes for ``patch = subprocess``:
2731

28-
- It didn't fully account for subprocesses spawning yet more subprocesses
29-
simultaneously, and some coverage could be missed. This is now fixed,
30-
closing `issue 2024`_.
32+
- If subprocesses spawned yet more subprocesses simultaneously, some coverage
33+
could be missed. This is now fixed, closing `issue 2024`_.
3134

3235
- If subprocesses were created in other directories, their data files were
3336
stranded there and not combined into the totals, as described in `issue
@@ -55,8 +58,6 @@ Unreleased
5558
.. _issue 2025: https://github.com/nedbat/coveragepy/issues/2025
5659

5760

58-
.. start-releases
59-
6061
.. _changes_7-10-2:
6162

6263
Version 7.10.2 — 2025-08-03

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

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)