Skip to content

Commit

Permalink
docs: prep for 7.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Oct 2, 2023
1 parent 1ea3907 commit ffd954f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Expand Up @@ -17,8 +17,12 @@ 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-3-2:

Version 7.3.2 — 2023-10-02
--------------------------

- The ``coverage lcov`` command ignored the ``[report] exclude_lines`` and
``[report] exclude_also`` settings (`issue 1684`_). This is now fixed,
Expand All @@ -44,8 +48,6 @@ Unreleased
.. _88054: https://github.com/python/cpython/issues/88054


.. scriv-start-here
.. _changes_7-3-1:

Version 7.3.1 — 2023-09-06
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -25,7 +25,7 @@ Coverage.py runs on these versions of Python:

.. PYVERSIONS
* CPython 3.8 through 3.12.0rc1
* CPython 3.8 through 3.12.
* PyPy3 versions 3.8 through 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
Expand Up @@ -8,8 +8,8 @@

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


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

rst_epilog = """
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Expand Up @@ -18,7 +18,7 @@ supported on:

.. PYVERSIONS
* Python versions 3.8 through 3.12.0rc1.
* Python versions 3.8 through 3.12.
* PyPy3 versions 3.8 through 3.10.

.. ifconfig:: prerelease
Expand Down

0 comments on commit ffd954f

Please sign in to comment.