Skip to content

Commit

Permalink
docs: prep for 7.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Apr 23, 2024
1 parent 41e01d3 commit ed97cfb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
12 changes: 7 additions & 5 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-0:

Version 7.5.0 — 2024-04-23
--------------------------

- Added initial support for function and class reporting in the HTML report.
There are now three index pages which link to each other: files, functions,
Expand All @@ -44,14 +48,12 @@ Unreleased
and is renamed from "attempted_config_files" to the more logical
"config_files_attempted."

- Python 3.13.0a5 is supported.
- Python 3.13.0a6 is supported.

.. _issue 1384: https://github.com/nedbat/coveragepy/issues/1384
.. _issue 1765: https://github.com/nedbat/coveragepy/issues/1765


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

Version 7.4.4 — 2024-03-14
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.0a3 and up.
* Python 3.8 through 3.12, and 3.13.0a6 and up.
* 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, 0, "alpha", 1)
_dev = 1
version_info = (7, 5, 0, "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.4.4"
version = "7.5.0"
# The full version, including alpha/beta/rc tags.
release = "7.4.4"
release = "7.5.0"
# The date of release, in "monthname day, year" format.
release_date = "March 14, 2024"
release_date = "April 23, 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.0a3 and up.
* Python 3.8 through 3.12, and 3.13.0a6 and up.
* PyPy3 versions 3.8 through 3.10.

.. ifconfig:: prerelease
Expand Down

0 comments on commit ed97cfb

Please sign in to comment.