Skip to content

Commit edca804

Browse files
committed
Making 4.5.2
1 parent 242619a commit edca804

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

CHANGES.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ Change history for Coverage.py
1515
.. Version 7.8.1 --- 2021-07-27
1616
.. ----------------------------
1717
18-
Unreleased
19-
----------
18+
19+
.. _changes_452:
20+
21+
Version 4.5.2 --- 2018-11-12
22+
----------------------------
2023

2124
- Namespace packages are supported on Python 3.7, where they used to cause
2225
TypeErrors about path being None. Fixes `issue 700`_.

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 = (4, 5, 2, 'alpha', 1)
8+
version_info = (4, 5, 2, 'final', 0)
99

1010

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

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '4.5' # CHANGEME
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.5.1' # CHANGEME
61+
release = '4.5.2' # CHANGEME
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ not.
6464

6565
.. ifconfig:: not prerelease
6666

67-
The latest version is coverage.py 4.5.1, released February 10th 2018. It
67+
The latest version is coverage.py 4.5.2, released November 12th 2018. It
6868
is supported on:
6969

7070
* Python versions 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, 3.7, and pre-alpha 3.8.
7171

72-
* PyPy2 5.10 and PyPy3 5.10.
72+
* PyPy2 6.0 and PyPy3 6.0.
7373

7474
* Jython 2.7.1, though only for running code, not reporting.
7575

howto.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
- Don't forget the man page: doc/python-coverage.1.txt
1818
- Check that the docs build correctly:
1919
$ tox -e doc
20-
- Done with changes to source files, check them in.
21-
- hg push
20+
- Done with changes to source files, check them in and push them.
2221
- Generate new sample_html to get the latest, incl footer version number:
2322
make clean
2423
pip install -e .
@@ -60,15 +59,15 @@
6059
- Visit https://pypi.python.org/pypi?:action=pkg_edit&name=coverage :
6160
- show/hide the proper versions.
6261
- Tag the tree
63-
- hg tag -m "Coverage 3.0.1" coverage-3.0.1
62+
- git tag coverage-3.0.1
6463
- Bump version:
6564
- coverage/version.py
6665
- increment version number
6766
- IF NOT BETA:
6867
- set to alpha-0 if just released
6968
- CHANGES.rst
7069
- add an "Unreleased" section to the top.
71-
- push hg changes
70+
- push git changes
7271
- Update nedbatchelder.com
7372
- Blog post?
7473
- Update readthedocs

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
Programming Language :: Python :: 3.5
3333
Programming Language :: Python :: 3.6
3434
Programming Language :: Python :: 3.7
35+
Programming Language :: Python :: 3.8
3536
Programming Language :: Python :: Implementation :: CPython
3637
Programming Language :: Python :: Implementation :: PyPy
3738
Programming Language :: Python :: Implementation :: Jython

0 commit comments

Comments
 (0)