Skip to content

Commit 5edf8eb

Browse files
committed
docs: prep for 7.11.0
1 parent 2c023ae commit 5edf8eb

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

CHANGES.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ 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-11-0:
2526

26-
- Dropped support for Python 3.9, added support for Python 3.15 alpha.
27+
Version 7.11.0 — 2025-10-15
28+
---------------------------
2729

30+
- Dropped support for Python 3.9, declared support for Python 3.15 alpha.
2831

29-
.. start-releases
3032

3133
.. _changes_7-10-7:
3234

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
4444
multi-line exclusion patterns;
4545
function/class reporting;
4646
experimental support for sys.monitoring;
47-
dropped support for Python 3.7 and 3.8;
47+
dropped support for Python up to 3.9;
4848
added ``Coverage.collect()`` context manager;
4949
improved data combining;
5050
``[run] exclude_also`` setting;

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, 11, 0, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 11, 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
@@ -68,11 +68,11 @@
6868
# @@@ editable
6969
copyright = "2009–2025, Ned Batchelder" # pylint: disable=redefined-builtin
7070
# The short X.Y.Z version.
71-
version = "7.10.7"
71+
version = "7.11.0"
7272
# The full version, including alpha/beta/rc tags.
73-
release = "7.10.7"
73+
release = "7.11.0"
7474
# The date of release, in "monthname day, year" format.
75-
release_date = "September 21, 2025"
75+
release_date = "October 15, 2025"
7676
# @@@ end
7777

7878
rst_epilog = f"""

0 commit comments

Comments
 (0)