Skip to content

Commit

Permalink
docs: prep for 7.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Mar 14, 2024
1 parent a536161 commit 9b0008b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Expand Up @@ -20,8 +20,12 @@ upgrading your version of coverage.py.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. scriv-start-here
.. _changes_7-4-4:

Version 7.4.4 — 2024-03-14
--------------------------

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


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

Version 7.4.3 — 2024-02-23
Expand Down
4 changes: 2 additions & 2 deletions coverage/version.py
Expand Up @@ -8,8 +8,8 @@

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


def _make_version(
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Expand Up @@ -67,11 +67,11 @@
# @@@ editable
copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.4.3"
version = "7.4.4"
# The full version, including alpha/beta/rc tags.
release = "7.4.3"
release = "7.4.4"
# The date of release, in "monthname day, year" format.
release_date = "February 23, 2024"
release_date = "March 14, 2024"
# @@@ end

rst_epilog = f"""
Expand Down

0 comments on commit 9b0008b

Please sign in to comment.