Skip to content

Commit 7c62a9f

Browse files
committed
v1.5.0
1 parent 1023938 commit 7c62a9f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codecov/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
pass
3030

3131

32-
version = VERSION = __version__ = '1.6.0'
32+
version = VERSION = __version__ = '1.5.0'
3333

3434
COLOR = True
3535

@@ -572,7 +572,7 @@ def main(*argv, **kwargs):
572572

573573
res = requests.post('%s/upload/v3?%s' % (codecov.url, urlargs))
574574
res.raise_for_status()
575-
res = res.text.strip().splitlines()
575+
res = res.text.strip().split()
576576
result, upload_url = res[0], res[1]
577577

578578
s3 = requests.put(upload_url, data=reports,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33
import sys
44

5-
version = '1.6.0'
5+
version = '1.5.0'
66
classifiers = ["Development Status :: 5 - Production/Stable",
77
"Environment :: Plugins",
88
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)