File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
Filter options
Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
Original file line number Diff line number Diff line change @@ -21,16 +21,19 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
21
21
.. Version 7.8.1 --- 2021-07-27
22
22
.. ----------------------------
23
23
24
- Unreleased
25
- ----------
24
+
25
+ .. _changes_501 :
26
+
27
+ Version 5.0.1 --- 2019-12-22
28
+ ----------------------------
26
29
27
30
- If a 4.x data file is the cause of a "file is not a database" error, then use
28
31
a more specific error message, "Looks like a coverage 4.x data file, are you
29
32
mixing versions of coverage?" Helps diagnose the problems described in
30
33
`issue 886 `_.
31
34
32
35
- Measurement contexts and relative file names didn't work together, as
33
- reported in `issue_899 `_ and `issue_900 `_. This is now fixed, thanks to
36
+ reported in `issue 899 `_ and `issue 900 `_. This is now fixed, thanks to
34
37
David Szotten.
35
38
36
39
- When using ``coverage run --concurrency=multiprocessing ``, all data files
@@ -41,6 +44,8 @@ Unreleased
41
44
- Fixed a problem on Windows when the current directory is changed to a
42
45
different drive (`issue 895 `_). Thanks, Olivier Grisel.
43
46
47
+ - Updated Python 3.9 support to 3.9a2.
48
+
44
49
.. _issue 880 : https://github.com/nedbat/coveragepy/issues/880
45
50
.. _issue 886 : https://github.com/nedbat/coveragepy/issues/886
46
51
.. _issue 895 : https://github.com/nedbat/coveragepy/issues/895
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ library to determine which lines are executable, and which have been executed.
20
20
Coverage.py runs on many versions of Python:
21
21
22
22
* CPython 2.7.
23
- * CPython 3.5 through 3.9 alpha 1 .
23
+ * CPython 3.5 through 3.9 alpha 2 .
24
24
* PyPy2 7.0 and PyPy3 7.0.
25
25
26
26
Documentation is on `Read the Docs `_. Code repository and issue tracker are on
Original file line number Diff line number Diff line change 5
5
# This file is exec'ed in setup.py, don't import anything!
6
6
7
7
# Same semantics as sys.version_info.
8
- version_info = (5 , 0 , 1 , 'alpha ' , 1 )
8
+ version_info = (5 , 0 , 1 , 'final ' , 0 )
9
9
10
10
11
11
def _make_version (major , minor , micro , releaselevel , serial ):
Original file line number Diff line number Diff line change 68
68
# The short X.Y version.
69
69
version = '5.0' # CHANGEME
70
70
# The full version, including alpha/beta/rc tags.
71
- release = '5.0' # CHANGEME
71
+ release = '5.0.1' # CHANGEME
72
72
# The date of release, in "monthname day, year" format.
73
- release_date = 'December 14 , 2019' # CHANGEME
73
+ release_date = 'December 22 , 2019' # CHANGEME
74
74
75
75
rst_epilog = """
76
76
.. |release_date| replace:: {release_date}
You can’t perform that action at this time.
0 commit comments