Skip to content

Commit

Permalink
docs: prep for 7.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jul 11, 2024
1 parent 6a268b0 commit 7f27fa7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 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-6-0:

Version 7.6.0 — 2024-07-11
--------------------------

- Exclusion patterns can now be multi-line, thanks to `Daniel Diniz <pull
1807_>`_. This enables many interesting exclusion use-cases, including those
Expand Down Expand Up @@ -49,8 +53,6 @@ Unreleased
.. _pull 1807: https://github.com/nedbat/coveragepy/pull/1807
.. _pull 1809: https://github.com/nedbat/coveragepy/pull/1809

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

Version 7.5.4 — 2024-06-22
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
.. _GitHub: https://github.com/nedbat/coveragepy

**New in 7.x:**
initial function/class reporting;
multi-line exclusion patterns;
function/class reporting;
experimental support for sys.monitoring;
dropped support for Python 3.7;
added ``Coverage.collect()`` context manager;
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, 6, 0, "alpha", 0)
_dev = 1
version_info = (7, 6, 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.5.4"
version = "7.6.0"
# The full version, including alpha/beta/rc tags.
release = "7.5.4"
release = "7.6.0"
# The date of release, in "monthname day, year" format.
release_date = "June 22, 2024"
release_date = "July 11, 2024"
# @@@ end

rst_epilog = f"""
Expand Down

0 comments on commit 7f27fa7

Please sign in to comment.