summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-01-24 19:35:32 -0500
committerNed Batchelder <ned@nedbatchelder.com>2023-01-24 19:35:32 -0500
commit36712f4eb500b4b0db4ae7b152462ae49e326f0c (patch)
tree4caf7dff988e33e8f19f9cead7d74e8bce116cc2
parent4cc32922685c6971275f522304b3754ad1a233c1 (diff)
downloadpython-coveragepy-git-36712f4eb500b4b0db4ae7b152462ae49e326f0c.tar.gz
docs: prep for 7.1.0
-rw-r--r--CHANGES.rst18
-rw-r--r--coverage/version.py4
-rw-r--r--doc/conf.py6
3 files changed, 15 insertions, 13 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 745564c5..fa01b701 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 e6a1b9f3..6f6375b6 100644
--- a/coverage/version.py
+++ b/coverage/version.py
@@ -8,8 +8,8 @@ from __future__ import annotations
# 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 b321144e..39601fab 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -65,11 +65,11 @@ project = 'Coverage.py'
# @@@ 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 = """