Skip to content

Commit

Permalink
docs: prep for 7.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 20, 2023
1 parent 9bda95d commit 27a3392
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ development at the same time, such as 4.5.x and 5.0.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. scriv-start-here
.. _changes_7-3-4:

Version 7.3.4 — 2023-12-20
--------------------------

- Fix: the change for multi-line signature exclusions in 7.3.3 broke other
forms of nested clauses being excluded properly. This is now fixed, closing
Expand All @@ -31,8 +35,6 @@ Unreleased
.. _pull 1717: https://github.com/nedbat/coveragepy/pull/1717


.. scriv-start-here
.. _changes_7-3-3:

Version 7.3.3 — 2023-12-14
Expand Down
4 changes: 2 additions & 2 deletions coverage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

# version_info: same semantics as sys.version_info.
# _dev: the .devN suffix if any.
version_info = (7, 3, 4, "alpha", 0)
_dev = 1
version_info = (7, 3, 4, "final", 0)
_dev = 0


def _make_version(
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@
# @@@ editable
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.3.3"
version = "7.3.4"
# The full version, including alpha/beta/rc tags.
release = "7.3.3"
release = "7.3.4"
# The date of release, in "monthname day, year" format.
release_date = "December 14, 2023"
release_date = "December 20, 2023"
# @@@ end

rst_epilog = """
Expand Down

0 comments on commit 27a3392

Please sign in to comment.