Skip to content

Commit

Permalink
Getting ready for 5.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Mar 16, 2020
1 parent f668d6f commit b1dd5a2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
.. Version 9.8.1 --- 2027-07-27
.. ----------------------------
Unreleased
----------
- Updated Python 3.9 support to 3.9a4.
.. _changes_504:

Version 5.0.4 --- 2020-03-16
----------------------------

- If using the ``[run] relative_files`` setting, the XML report will use
relative files in the ``<source>`` elements indicating the location of source
Expand All @@ -36,6 +37,8 @@ Unreleased
- Windows wheels for Python 3.8 were incorrectly built, but are now fixed.
(`issue 949`_)

- Updated Python 3.9 support to 3.9a4.

- HTML reports couldn't be sorted if localStorage wasn't available. This is now
fixed: sorting works even though the sorting setting isn't retained. (`issue
944`_ and `pull request 945`_). Thanks, Abdeali Kothari.
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, 4, 'alpha', 0)
version_info = (5, 0, 4, '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.3' # CHANGEME
release = '5.0.4' # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = 'January 12, 2020' # CHANGEME
release_date = 'March 16, 2020' # CHANGEME

rst_epilog = """
.. |release_date| replace:: {release_date}
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ supported on:

* Python versions 2.7, 3.5, 3.6, 3.7, 3.8, and 3.9 alpha.

* PyPy2 7.2.0 and PyPy3 7.2.0.
* PyPy2 7.3.0 and PyPy3 7.3.0.

.. ifconfig:: prerelease

Expand Down

0 comments on commit b1dd5a2

Please sign in to comment.