Skip to content

Commit 6a7d5ca

Browse files
committed
docs: prep for 7.10.0
1 parent 395c8cd commit 6a7d5ca

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGES.rst

Lines changed: 6 additions & 4 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-10-0:
26+
27+
Version 7.10.0 — 2025-07-24
28+
---------------------------
2529

2630
- A new configuration option: ":ref:`config_run_patch`" specifies named patches
2731
to work around some limitations in coverage measurement. These patches are
@@ -86,8 +90,6 @@ Unreleased
8690
.. _issue 2001: https://github.com/nedbat/coveragepy/issues/2001
8791
.. _issue 2005: https://github.com/nedbat/coveragepy/issues/2005
8892

89-
.. start-releases
90-
9193
.. _changes_7-9-2:
9294

9395
Version 7.9.2 — 2025-07-03

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ 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] patch`` setting;
40+
``--save-signal`` option;
3941
``[run] core`` setting;
4042
``[run] source_dirs`` setting;
4143
``Coverage.branch_stats()``;

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

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)