Skip to content

Commit ddc88f7

Browse files
committed
docs: prep for 7.4.1
1 parent 98cd671 commit ddc88f7

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

Diff for: CHANGES.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,21 @@ 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-1:
23+
24+
Version 7.4.1 — 2024-01-26
25+
--------------------------
26+
27+
- Python 3.13.0a3 is supported.
2228

2329
- Fix: the JSON report now includes an explicit format version number, closing
2430
`issue 1732`_.
2531

2632
.. _issue 1732: https://github.com/nedbat/coveragepy/issues/1732
2733

2834

29-
.. scriv-start-here
30-
3135
.. _changes_7-4-0:
3236

3337
Version 7.4.0 — 2023-12-27

Diff for: 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-2023 Ned Batchelder. All rights reserved.
2+
Copyright 2004-2024 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

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

1414

1515
def _make_version(

Diff for: 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–2023, Ned Batchelder" # pylint: disable=redefined-builtin
68+
copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin
6969
# The short X.Y.Z version.
70-
version = "7.4.0"
70+
version = "7.4.1"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.4.0"
72+
release = "7.4.1"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "December 27, 2023"
74+
release_date = "January 26, 2024"
7575
# @@@ end
7676

7777
rst_epilog = """

0 commit comments

Comments
 (0)