Skip to content

Commit

Permalink
docs: prep for 7.6.12
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 11, 2025
1 parent ce4efdc commit a4ed38b
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,16 +20,18 @@ upgrading your version of coverage.py.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. start-releases
.. _changes_7-6-12:

Version 7.6.12 — 2025-02-11
---------------------------

- Fix: some aarch64 distributions were missing (`issue 1927`_). These are now
building reliably.

.. _issue 1927: https://github.com/nedbat/coveragepy/issues/1927

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

Version 7.6.11 — 2025-02-08
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.9 through 3.14 alpha 2, including free-threading.
* Python 3.9 through 3.14 alpha 4, including free-threading.
* PyPy3 versions 3.9 and 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, 6, 12, "alpha", 0)
_dev = 1
version_info = (7, 6, 12, "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–2025, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.6.11"
version = "7.6.12"
# The full version, including alpha/beta/rc tags.
release = "7.6.11"
release = "7.6.12"
# The date of release, in "monthname day, year" format.
release_date = "February 8, 2025"
release_date = "February 11, 2025"
# @@@ 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.9 through 3.14 alpha 2, including free-threading.
* Python 3.9 through 3.14 alpha 4, including free-threading.
* PyPy3 versions 3.9 and 3.10.

.. ifconfig:: prerelease
Expand Down

0 comments on commit a4ed38b

Please sign in to comment.