8000 Bump version · sajith/codecov-python@93c9903 · GitHub
[go: up one dir, main page]

Skip to content

Commit 93c9903

Browse files
committed
Bump version
1 parent 3ad07c2 commit 93c9903

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
### `2.0.21`
2+
3+
- fixed string issues
4+
15
### `2.0.20`
26

3-
- fixed broken subprocess handling#
7+
- fixed broken subprocess handling
48

59
### `2.0.19`
610

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.20'
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.20'
4+
version = '2.0.21'
55
classifiers = ["Development Status :: 5 - Production/Stable",
66
"Environment :: Plugins",
77
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)
0