Skip to content

Commit b1dd5a2

Browse files
committed
Getting ready for 5.0.4
1 parent f668d6f commit b1dd5a2

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGES.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
2121
.. Version 9.8.1 --- 2027-07-27
2222
.. ----------------------------
2323
24-
Unreleased
25-
----------
2624
27-
- Updated Python 3.9 support to 3.9a4.
25+
.. _changes_504:
26+
27+
Version 5.0.4 --- 2020-03-16
28+
----------------------------
2829

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

40+
- Updated Python 3.9 support to 3.9a4.
41+
3942
- HTML reports couldn't be sorted if localStorage wasn't available. This is now
4043
fixed: sorting works even though the sorting setting isn't retained. (`issue
4144
944`_ and `pull request 945`_). Thanks, Abdeali Kothari.

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, 4, 'alpha', 0)
8+
version_info = (5, 0, 4, '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.3' # CHANGEME
71+
release = '5.0.4' # CHANGEME
7272
# The date of release, in "monthname day, year" format.
73-
release_date = 'January 12, 2020' # CHANGEME
73+
release_date = 'March 16, 2020' # CHANGEME
7474

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

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ supported on:
1818

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

21-
* PyPy2 7.2.0 and PyPy3 7.2.0.
21+
* PyPy2 7.3.0 and PyPy3 7.3.0.
2222

2323
.. ifconfig:: prerelease
2424

0 commit comments

Comments
 (0)