Skip to content

Commit

Permalink
docs: prep for 7.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed May 29, 2023
1 parent 6df9ee5 commit 51b3e82
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
12 changes: 8 additions & 4 deletions CHANGES.rst
Expand Up @@ -17,21 +17,25 @@ development at the same time, such as 4.5.x and 5.0.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. scriv-start-here
.. _changes_7-2-7:

Version 7.2.7 — 2023-05-29
--------------------------

- Fix: reverted a `change from 6.4.3 <pull 1347_>`_ that helped Cython, but
also increased the size of data files when using dynamic contexts, as
described in the now-fixed `issue 1586`_. The problem is now avoided due to a
recent change (`issue 1538`_). Thanks to `Anders Kaseorg <pull 1629_>`_
and David Szotten for persisting with problem reports and detailed diagnoses.

- Wheels are now provided for CPython 3.12.

.. _issue 1586: https://github.com/nedbat/coveragepy/issues/1586
.. _pull 1629: https://github.com/nedbat/coveragepy/pull/1629


.. scriv-start-here
.. _changes_7-2-6:

Version 7.2.6 — 2023-05-23
Expand Down
4 changes: 2 additions & 2 deletions coverage/version.py
Expand Up @@ -8,8 +8,8 @@

# version_info: same semantics as sys.version_info.
# _dev: the .devN suffix if any.
version_info = (7, 2, 7, "alpha", 0)
_dev = 1
version_info = (7, 2, 7, "final", 0)
_dev = 0


def _make_version(
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Expand Up @@ -66,11 +66,11 @@
# @@@ editable
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.2.6"
version = "7.2.7"
# The full version, including alpha/beta/rc tags.
release = "7.2.6"
release = "7.2.7"
# The date of release, in "monthname day, year" format.
release_date = "May 23, 2023"
release_date = "May 29, 2023"
# @@@ end

rst_epilog = """
Expand Down

0 comments on commit 51b3e82

Please sign in to comment.