Skip to content

Commit

Permalink
Prep for 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 22, 2019
1 parent 7e747a3 commit d2ae0e2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
11 changes: 8 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,19 @@ 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
mixing versions of coverage?" Helps diagnose the problems described in
`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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion coverage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
# 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}
Expand Down

0 comments on commit d2ae0e2

Please sign in to comment.