Skip to content

Commit ac0021b

Browse files
committed
docs: prep for 7.3.1
1 parent 508c27f commit ac0021b

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
@@ -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-3-1:
23+
24+
Version 7.3.1 — 2023-09-06
25+
--------------------------
2226

2327
- The semantics of stars in file patterns has been clarified in the docs. A
2428
leading or trailing star matches any number of path components, like a double
@@ -34,8 +38,6 @@ Unreleased
3438
.. _starbad: https://github.com/nedbat/coveragepy/issues/1407#issuecomment-1631085209
3539
.. _pull 1650: https://github.com/nedbat/coveragepy/pull/1650
3640

37-
.. scriv-start-here
38-
3941
.. _changes_7-3-0:
4042

4143
Version 7.3.0 — 2023-08-12

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, 1, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 3, 1, "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.0"
70+
version = "7.3.1"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.3.0"
72+
release = "7.3.1"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "August 12, 2023"
74+
release_date = "September 6, 2023"
7575
# @@@ end
7676

7777
rst_epilog = """

0 commit comments

Comments
 (0)