From 36712f4eb500b4b0db4ae7b152462ae49e326f0c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 24 Jan 2023 19:35:32 -0500 Subject: [PATCH] docs: prep for 7.1.0 --- CHANGES.rst | 18 ++++++++++-------- coverage/version.py | 4 ++-- doc/conf.py | 6 +++--- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 745564c52..fa01b701e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,17 +17,21 @@ 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 @@ -35,8 +39,6 @@ Unreleased .. _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 diff --git a/coverage/version.py b/coverage/version.py index e6a1b9f3e..6f6375b67 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -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( diff --git a/doc/conf.py b/doc/conf.py index b321144e9..39601fab2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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 = """