Skip to content

Commit 9b0008b

Browse files
committed
docs: prep for 7.4.4
1 parent a536161 commit 9b0008b

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
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-4-4:
26+
27+
Version 7.4.4 — 2024-03-14
28+
--------------------------
2529

2630
- Fix: in some cases, even with ``[run] relative_files=True``, a data file
2731
could be created with absolute path names. When combined with other relative
@@ -45,8 +49,6 @@ Unreleased
4549
.. _pull 1754: https://github.com/nedbat/coveragepy/pull/1754
4650

4751

48-
.. scriv-start-here
49-
5052
.. _changes_7-4-3:
5153

5254
Version 7.4.3 — 2024-02-23

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, 4, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 4, 4, "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.4.3"
70+
version = "7.4.4"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.4.3"
72+
release = "7.4.4"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "February 23, 2024"
74+
release_date = "March 14, 2024"
7575
# @@@ end
7676

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)