Skip to content

Commit 4f020d4

Browse files
committedDec 27, 2023
docs: prep for 7.4.0
1 parent 5bb88c3 commit 4f020d4

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed
 

‎CHANGES.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ development at the same time, such as 4.5.x and 5.0.
1717
.. Version 9.8.1 — 2027-07-27
1818
.. --------------------------
1919
20-
Unreleased
21-
----------
20+
.. scriv-start-here
21+
22+
.. _changes_7-4-0:
23+
24+
Version 7.4.0 — 2023-12-27
25+
--------------------------
2226

2327
- In Python 3.12 and above, you can try an experimental core based on the new
2428
:mod:`sys.monitoring <python:sys.monitoring>` module by defining a
@@ -27,8 +31,6 @@ Unreleased
2731
interested to hear how it works (or doesn't!) for you.
2832

2933

30-
.. scriv-start-here
31-
3234
.. _changes_7-3-4:
3335

3436
Version 7.3.4 — 2023-12-20

‎README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ 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+
experimental support for sys.monitoring;
3839
dropped support for Python 3.7;
3940
added ``Coverage.collect()`` context manager;
4041
improved data combining;

‎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, 3, 5, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 4, 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–2023, Ned Batchelder" # pylint: disable=redefined-builtin
6969
# The short X.Y.Z version.
70-
version = "7.3.4"
70+
version = "7.4.0"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.3.4"
72+
release = "7.4.0"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "December 20, 2023"
74+
release_date = "December 27, 2023"
7575
# @@@ end
7676

7777
rst_epilog = """

0 commit comments

Comments
 (0)
Please sign in to comment.