Skip to content

Commit 36712f4

Browse files
committed
docs: prep for 7.1.0
1 parent 4cc3292 commit 36712f4

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

CHANGES.rst

+10-8
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,28 @@ development at the same time, such as 4.5.x and 5.0.
1717
.. Version 9.8.1 — 2027-07-27
1818
.. --------------------------
1919
20-
Unreleased
21-
----------
20+
.. scriv-start-here
21+
22+
.. _changes_7-1-0:
2223

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

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

30+
- Performance: fixed a slowdown with dynamic contexts that's been around since
31+
6.4.3. The fix closes `issue 1538`_. Thankfully this doesn't break the
32+
`Cython change`_ that fixed `issue 972`_. Thanks to Mathieu Kniewallner for
33+
the deep investigative work and comprehensive issue report.
34+
3135
- Typing: all product and test code has type annotations.
3236

3337
.. _Cython change: https://github.com/nedbat/coveragepy/pull/1347
3438
.. _issue 972: https://github.com/nedbat/coveragepy/issues/972
3539
.. _issue 1319: https://github.com/nedbat/coveragepy/issues/1319
3640
.. _issue 1538: https://github.com/nedbat/coveragepy/issues/1538
3741

38-
.. scriv-start-here
39-
4042
.. _changes_7-0-5:
4143

4244
Version 7.0.5 — 2023-01-10

coverage/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
# version_info: same semantics as sys.version_info.
1010
# _dev: the .devN suffix if any.
11-
version_info = (7, 0, 6, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 1, 0, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@
6565
# @@@ editable
6666
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
6767
# The short X.Y.Z version.
68-
version = "7.0.5"
68+
version = "7.1.0"
6969
# The full version, including alpha/beta/rc tags.
70-
release = "7.0.5"
70+
release = "7.1.0"
7171
# The date of release, in "monthname day, year" format.
72-
release_date = "January 10, 2023"
72+
release_date = "January 24, 2023"
7373
# @@@ end
7474

7575
rst_epilog = """

0 commit comments

Comments
 (0)