Skip to content

Commit dbbd5b7

Browse files
committedJan 2, 2023
docs: prep for 7.0.2
1 parent d08e6d0 commit dbbd5b7

File tree

6 files changed

+21
-18
lines changed

6 files changed

+21
-18
lines changed
 

‎CHANGES.rst

+12-9
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,34 @@ 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+
.. _changes_7-0-2:
21+
22+
Version 7.0.2 — 2023-01-02
23+
--------------------------
2224

2325
- Fix: when using the ``[run] relative_files = True`` setting, a relative
2426
``[paths]`` pattern was still being made absolute. This is now fixed,
2527
closing `issue 1519`_.
2628

2729
- Fix: if Python doesn't provide tomllib, then TOML configuration files can
2830
only be read if coverage.py is installed with the ``[toml]`` extra.
29-
Coverage.py will raise an error if toml support is not installed when it sees
31+
Coverage.py will raise an error if TOML support is not installed when it sees
3032
your settings are in a .toml file. But it didn't understand that
31-
``[tools.coverage]`` was a valid section header, so the error wasn't
32-
reported, and settings were silently ignored. This is now fixed, closing
33-
`issue 1516`_.
33+
``[tools.coverage]`` was a valid section header, so the error wasn't reported
34+
if you used that header, and settings were silently ignored. This is now
35+
fixed, closing `issue 1516`_.
3436

3537
- Fix: adjusted how decorators are traced on PyPy 7.3.10, fixing `issue 1515`_.
3638

3739
- Fix: the ``coverage lcov`` report did not properly implement the
3840
``--fail-under=MIN`` option. This has been fixed.
3941

40-
- Refactor: a number of refactorings internally due to adding type annotations.
42+
- Refactor: added many type annotations, including a number of refactorings.
4143
This should not affect outward behavior, but they were a bit invasive in some
42-
places.
44+
places, so keep your eyes peeled for oddities.
4345

44-
- Remove vestigial and long-untested support for Jython and IronPython.
46+
- Refactor: removed the vestigial and long untested support for Jython and
47+
IronPython.
4548

4649
.. _issue 1515: https://github.com/nedbat/coveragepy/issues/1515
4750
.. _issue 1516: https://github.com/nedbat/coveragepy/issues/1516

‎NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright 2001 Gareth Rees. All rights reserved.
2-
Copyright 2004-2022 Ned Batchelder. All rights reserved.
2+
Copyright 2004-2023 Ned Batchelder. All rights reserved.
33

44
Except where noted otherwise, this software is licensed under the Apache
55
License, Version 2.0 (the "License"); you may not use this work except in

‎README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Coverage.py runs on these versions of Python:
2929
.. PYVERSIONS
3030
3131
* CPython 3.7 through 3.12.0a3
32-
* PyPy3 7.3.10.
32+
* PyPy3 7.3.11.
3333

3434
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
3535
`GitHub`_.

‎coverage/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
# version_info: same semantics as sys.version_info.
88
# _dev: the .devN suffix if any.
9-
version_info = (7, 0, 2, "alpha", 0)
10-
_dev = 1
9+
version_info = (7, 0, 2, "final", 0)
10+
_dev = 0
1111

1212

1313
def _make_version(

‎doc/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@
6363
# built documents.
6464

6565
# @@@ editable
66-
copyright = "2009–2022, Ned Batchelder" # pylint: disable=redefined-builtin
66+
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
6767
# The short X.Y.Z version.
68-
version = "7.0.1"
68+
version = "7.0.2"
6969
# The full version, including alpha/beta/rc tags.
70-
release = "7.0.1"
70+
release = "7.0.2"
7171
# The date of release, in "monthname day, year" format.
72-
release_date = "December 23, 2022"
72+
release_date = "January 2, 2023"
7373
# @@@ end
7474

7575
rst_epilog = """

‎doc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ supported on:
1919
.. PYVERSIONS
2020
2121
* Python versions 3.7 through 3.12.0a3.
22-
* PyPy3 7.3.10.
22+
* PyPy3 7.3.11.
2323

2424
.. ifconfig:: prerelease
2525

0 commit comments

Comments
 (0)
Please sign in to comment.