Skip to content

Commit

Permalink
docs: prep for 7.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jun 22, 2024
1 parent fba9b9e commit 9e16381
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
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-5-4:

Version 7.5.4 — 2024-06-22
--------------------------

- If you attempt to combine statement coverage data with branch coverage data,
coverage.py used to fail with the message "Can't combine arc data with line
Expand All @@ -39,8 +43,6 @@ Unreleased
.. _issue 1799: https://github.com/nedbat/coveragepy/issues/1799


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

Version 7.5.3 — 2024-05-28
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Coverage.py runs on these versions of Python:

.. PYVERSIONS
* Python 3.8 through 3.12, and 3.13.0b1 and up.
* Python 3.8 through 3.12, and 3.13.0b2.
* PyPy3 versions 3.8 through 3.10.

Documentation is on `Read the Docs`_. Code repository and issue tracker are on
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, 5, 4, "alpha", 0)
_dev = 2
version_info = (7, 5, 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–2024, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.5.3"
version = "7.5.4"
# The full version, including alpha/beta/rc tags.
release = "7.5.3"
release = "7.5.4"
# The date of release, in "monthname day, year" format.
release_date = "May 28, 2024"
release_date = "June 22, 2024"
# @@@ end

rst_epilog = f"""
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ supported on:

.. PYVERSIONS
* Python 3.8 through 3.12, and 3.13.0b1 and up.
* Python 3.8 through 3.12, and 3.13.0b2.
* PyPy3 versions 3.8 through 3.10.

.. ifconfig:: prerelease
Expand Down

0 comments on commit 9e16381

Please sign in to comment.