Skip to content

Commit 938d519

Browse files
committed
docs: prep for 7.6.11
1 parent 27ee4ff commit 938d519

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

CHANGES.rst

+6-4
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-6-11:
26+
27+
Version 7.6.11 — 2025-02-08
28+
---------------------------
2529

2630
- Fix: a memory leak in CTracer has been fixed. The details are in `issue
2731
1924`_ and `pytest-dev 676`_. This should reduce the memory footprint for
@@ -34,8 +38,6 @@ Unreleased
3438
.. _issue 1924: https://github.com/nedbat/coveragepy/issues/1924
3539
.. _pytest-dev 676: https://github.com/pytest-dev/pytest-cov/issues/676
3640

37-
.. start-releases
38-
3941
.. _changes_7-6-10:
4042

4143
Version 7.6.10 — 2024-12-26

NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright 2001 Gareth Rees. All rights reserved.
2-
Copyright 2004-2024 Ned Batchelder. All rights reserved.
2+
Copyright 2004-2025 Ned Batchelder. All rights reserved.
33

44
Except where noted otherwise, this software is licensed under the Apache
55
License, Version 2.0 (the "License"); you may not use this work except in

coverage/version.py

+2-2
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, 6, 11, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 6, 11, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

doc/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@
6565
# built documents.
6666

6767
# @@@ editable
68-
copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin
68+
copyright = "2009–2025, Ned Batchelder" # pylint: disable=redefined-builtin
6969
# The short X.Y.Z version.
70-
version = "7.6.10"
70+
version = "7.6.11"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.6.10"
72+
release = "7.6.11"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "December 26, 2024"
74+
release_date = "February 8, 2025"
7575
# @@@ end
7676

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)