We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1023938 commit 7c62a9fCopy full SHA for 7c62a9f
codecov/__init__.py
@@ -29,7 +29,7 @@
29
pass
30
31
32
-version = VERSION = __version__ = '1.6.0'
+version = VERSION = __version__ = '1.5.0'
33
34
COLOR = True
35
@@ -572,7 +572,7 @@ def main(*argv, **kwargs):
572
573
res = requests.post('%s/upload/v3?%s' % (codecov.url, urlargs))
574
res.raise_for_status()
575
- res = res.text.strip().splitlines()
+ res = res.text.strip().split()
576
result, upload_url = res[0], res[1]
577
578
s3 = requests.put(upload_url, data=reports,
setup.py
@@ -2,7 +2,7 @@
2
from setuptools import setup
3
import sys
4
5
-version = '1.6.0'
+version = '1.5.0'
6
classifiers = ["Development Status :: 5 - Production/Stable",
7
"Environment :: Plugins",
8
"Intended Audience :: Developers",
0 commit comments