Skip to content

Commit 046b4fa

Browse files
authored
Merge pull request codecov#241 from codecov/string-processing
String processing
2 parents 9518ea6 + 93c9903 commit 046b4fa

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### `2.0.21`
2+
3+
- fixed string issues
4+
5+
### `2.0.20`
6+
7+
- fixed broken subprocess handling
8+
19
### `2.0.19`
210

311
- fixed broken subprocess handling

codecov/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
logging.captureWarnings(True)
2727

2828

29-
version = VERSION = __version__ = '2.0.19'
29+
version = VERSION = __version__ = '2.0.21'
3030

3131
COLOR = True
3232

@@ -626,7 +626,7 @@ def main(*argv, **kwargs):
626626
toc = str((try_to_run(['git', 'ls-files'], cwd=root) or
627627
try_to_run(['git', 'ls-files']) or
628628
try_to_run(['hg', 'locate'], cwd=root) or
629-
try_to_run(['hg', 'locate']) or ['']).strip())
629+
try_to_run(['hg', 'locate']) or [''])).strip()
630630

631631
if codecov.prefix:
632632
prefix = codecov.prefix.strip('/')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
from setuptools import setup
33

4-
version = '2.0.19'
4+
version = '2.0.21'
55
classifiers = ["Development Status :: 5 - Production/Stable",
66
"Environment :: Plugins",
77
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)