Skip to content

Commit

Permalink
docs: prep for 7.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Nov 14, 2024
1 parent ea5c685 commit 1def184
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 @@ -20,8 +20,12 @@ upgrading your version of coverage.py.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. start-releases
.. _changes_7-6-5:

Version 7.6.5 — 2024-11-14
--------------------------

- fix: fine-tuned the exact Python version (3.12.6) when exiting from ``with``
statements changed how they traced. This affected whether people saw the
Expand All @@ -36,8 +40,6 @@ Unreleased
.. _pytest-cov-666: https://github.com/pytest-dev/pytest-cov/issues/666


.. start-releases
.. _changes_7-6-4:

Version 7.6.4 — 2024-10-20
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, 5, "alpha", 0)
_dev = 1
version_info = (7, 6, 5, "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.6.4"
version = "7.6.5"
# The full version, including alpha/beta/rc tags.
release = "7.6.4"
release = "7.6.5"
# The date of release, in "monthname day, year" format.
release_date = "October 20, 2024"
release_date = "November 14, 2024"
# @@@ end

rst_epilog = f"""
Expand Down

0 comments on commit 1def184

Please sign in to comment.