Skip to content

Commit d2ae0e2

Browse files
committed
Prep for 5.0.1
1 parent 7e747a3 commit d2ae0e2

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGES.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,19 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
2121
.. Version 7.8.1 --- 2021-07-27
2222
.. ----------------------------
2323
24-
Unreleased
25-
----------
24+
25+
.. _changes_501:
26+
27+
Version 5.0.1 --- 2019-12-22
28+
----------------------------
2629

2730
- If a 4.x data file is the cause of a "file is not a database" error, then use
2831
a more specific error message, "Looks like a coverage 4.x data file, are you
2932
mixing versions of coverage?" Helps diagnose the problems described in
3033
`issue 886`_.
3134

3235
- 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
3437
David Szotten.
3538

3639
- When using ``coverage run --concurrency=multiprocessing``, all data files
@@ -41,6 +44,8 @@ Unreleased
4144
- Fixed a problem on Windows when the current directory is changed to a
4245
different drive (`issue 895`_). Thanks, Olivier Grisel.
4346

47+
- Updated Python 3.9 support to 3.9a2.
48+
4449
.. _issue 880: https://github.com/nedbat/coveragepy/issues/880
4550
.. _issue 886: https://github.com/nedbat/coveragepy/issues/886
4651
.. _issue 895: https://github.com/nedbat/coveragepy/issues/895

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ library to determine which lines are executable, and which have been executed.
2020
Coverage.py runs on many versions of Python:
2121

2222
* CPython 2.7.
23-
* CPython 3.5 through 3.9 alpha 1.
23+
* CPython 3.5 through 3.9 alpha 2.
2424
* PyPy2 7.0 and PyPy3 7.0.
2525

2626
Documentation is on `Read the Docs`_. Code repository and issue tracker are on

coverage/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This file is exec'ed in setup.py, don't import anything!
66

77
# Same semantics as sys.version_info.
8-
version_info = (5, 0, 1, 'alpha', 1)
8+
version_info = (5, 0, 1, 'final', 0)
99

1010

1111
def _make_version(major, minor, micro, releaselevel, serial):

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
# The short X.Y version.
6969
version = '5.0' # CHANGEME
7070
# The full version, including alpha/beta/rc tags.
71-
release = '5.0' # CHANGEME
71+
release = '5.0.1' # CHANGEME
7272
# The date of release, in "monthname day, year" format.
73-
release_date = 'December 14, 2019' # CHANGEME
73+
release_date = 'December 22, 2019' # CHANGEME
7474

7575
rst_epilog = """
7676
.. |release_date| replace:: {release_date}

0 commit comments

Comments
 (0)