Skip to content

Commit

Permalink
docs: prep for 7.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Nov 15, 2024
1 parent 898e94a commit c723de2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ upgrading your version of coverage.py.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. start-releases
.. _changes_7-6-7:

Version 7.6.7 — 2024-11-15
--------------------------

- fix: ugh, the other assert from 7.6.5 can also be encountered in the wild,
so it's been restored to a conditional. Sorry for the churn.


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

Version 7.6.6 — 2024-11-15
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, 7, "alpha", 0)
_dev = 1
version_info = (7, 6, 7, "final", 0)
_dev = 0


def _make_version(
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
# @@@ editable
copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.6.6"
version = "7.6.7"
# The full version, including alpha/beta/rc tags.
release = "7.6.6"
release = "7.6.7"
# The date of release, in "monthname day, year" format.
release_date = "November 15, 2024"
# @@@ end
Expand Down

0 comments on commit c723de2

Please sign in to comment.