Skip to content

Commit

Permalink
docs: prep for 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jan 25, 2023
1 parent 4cc3292 commit 36712f4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
18 changes: 10 additions & 8 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,28 @@ 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-1-0:

- Performance: fixed a slow-down with dynamic contexts that appeared in 6.4.3,
closing `issue 1538`_. Hopefully this doesn't break the `Cython change`_
that fixed `issue 972`_. Thanks to Mathieu Kniewallner for the deep
investigative work and comprehensive issue report.
Version 7.1.0 — 2023-01-24
--------------------------

- Added: the debug output file can now be specified with ``[run] debug_file``
in the configuration file. Closes `issue 1319`_.

- Performance: fixed a slowdown with dynamic contexts that's been around since
6.4.3. The fix closes `issue 1538`_. Thankfully this doesn't break the
`Cython change`_ that fixed `issue 972`_. Thanks to Mathieu Kniewallner for
the deep investigative work and comprehensive issue report.

- Typing: all product and test code has type annotations.

.. _Cython change: https://github.com/nedbat/coveragepy/pull/1347
.. _issue 972: https://github.com/nedbat/coveragepy/issues/972
.. _issue 1319: https://github.com/nedbat/coveragepy/issues/1319
.. _issue 1538: https://github.com/nedbat/coveragepy/issues/1538

.. scriv-start-here
.. _changes_7-0-5:

Version 7.0.5 — 2023-01-10
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, 0, 6, "alpha", 0)
_dev = 1
version_info = (7, 1, 0, "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 @@ -65,11 +65,11 @@
# @@@ editable
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.0.5"
version = "7.1.0"
# The full version, including alpha/beta/rc tags.
release = "7.0.5"
release = "7.1.0"
# The date of release, in "monthname day, year" format.
release_date = "January 10, 2023"
release_date = "January 24, 2023"
# @@@ end

rst_epilog = """
Expand Down

0 comments on commit 36712f4

Please sign in to comment.