Skip to content

Commit 7f27fa7

Browse files
committed
docs: prep for 7.6.0
1 parent 6a268b0 commit 7f27fa7

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
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+
.. scriv-start-here
24+
25+
.. _changes_7-6-0:
26+
27+
Version 7.6.0 — 2024-07-11
28+
--------------------------
2529

2630
- Exclusion patterns can now be multi-line, thanks to `Daniel Diniz <pull
2731
1807_>`_. This enables many interesting exclusion use-cases, including those
@@ -49,8 +53,6 @@ Unreleased
4953
.. _pull 1807: https://github.com/nedbat/coveragepy/pull/1807
5054
.. _pull 1809: https://github.com/nedbat/coveragepy/pull/1809
5155

52-
.. scriv-start-here
53-
5456
.. _changes_7-5-4:
5557

5658
Version 7.5.4 — 2024-06-22

README.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
3535
.. _GitHub: https://github.com/nedbat/coveragepy
3636

3737
**New in 7.x:**
38-
initial function/class reporting;
38+
multi-line exclusion patterns;
39+
function/class reporting;
3940
experimental support for sys.monitoring;
4041
dropped support for Python 3.7;
4142
added ``Coverage.collect()`` context manager;

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

1414

1515
def _make_version(

doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@
6767
# @@@ editable
6868
copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin
6969
# The short X.Y.Z version.
70-
version = "7.5.4"
70+
version = "7.6.0"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.5.4"
72+
release = "7.6.0"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "June 22, 2024"
74+
release_date = "July 11, 2024"
7575
# @@@ end
7676

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)