diff options
-rw-r--r-- | CHANGES.rst | 11 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 4 |
4 files changed, 12 insertions, 7 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index bd36d953..f6436df6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,8 +21,11 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`. .. Version 7.8.1 --- 2021-07-27 .. ---------------------------- -Unreleased ----------- + +.. _changes_501: + +Version 5.0.1 --- 2019-12-22 +---------------------------- - If a 4.x data file is the cause of a "file is not a database" error, then use a more specific error message, "Looks like a coverage 4.x data file, are you @@ -30,7 +33,7 @@ Unreleased `issue 886`_. - Measurement contexts and relative file names didn't work together, as - reported in `issue_899`_ and `issue_900`_. This is now fixed, thanks to + reported in `issue 899`_ and `issue 900`_. This is now fixed, thanks to David Szotten. - When using ``coverage run --concurrency=multiprocessing``, all data files @@ -41,6 +44,8 @@ Unreleased - Fixed a problem on Windows when the current directory is changed to a different drive (`issue 895`_). Thanks, Olivier Grisel. +- Updated Python 3.9 support to 3.9a2. + .. _issue 880: https://github.com/nedbat/coveragepy/issues/880 .. _issue 886: https://github.com/nedbat/coveragepy/issues/886 .. _issue 895: https://github.com/nedbat/coveragepy/issues/895 @@ -20,7 +20,7 @@ library to determine which lines are executable, and which have been executed. Coverage.py runs on many versions of Python: * CPython 2.7. -* CPython 3.5 through 3.9 alpha 1. +* CPython 3.5 through 3.9 alpha 2. * PyPy2 7.0 and PyPy3 7.0. Documentation is on `Read the Docs`_. Code repository and issue tracker are on diff --git a/coverage/version.py b/coverage/version.py index 8d750b34..9db46df4 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -5,7 +5,7 @@ # This file is exec'ed in setup.py, don't import anything! # Same semantics as sys.version_info. -version_info = (5, 0, 1, 'alpha', 1) +version_info = (5, 0, 1, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 660f1236..c2f85b10 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -68,9 +68,9 @@ copyright = u'2009\N{EN DASH}2019, Ned Batchelder.' # CHANGEME # pylint: di # The short X.Y version. version = '5.0' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '5.0' # CHANGEME +release = '5.0.1' # CHANGEME # The date of release, in "monthname day, year" format. -release_date = 'December 14, 2019' # CHANGEME +release_date = 'December 22, 2019' # CHANGEME rst_epilog = """ .. |release_date| replace:: {release_date} |