File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ ### ` 2.0.21 `
2
+
3
+ - fixed string issues
4
+
1
5
### ` 2.0.20 `
2
6
3
- - fixed broken subprocess handling#
7
+ - fixed broken subprocess handling
4
8
5
9
### ` 2.0.19 `
6
10
Original file line number Diff line number Diff line change 26
26
logging .captureWarnings (True )
27
27
28
28
29
- version = VERSION = __version__ = '2.0.20 '
29
+ version = VERSION = __version__ = '2.0.21 '
30
30
31
31
COLOR = True
32
32
@@ -626,7 +626,7 @@ def main(*argv, **kwargs):
626
626
toc = str ((try_to_run (['git' , 'ls-files' ], cwd = root ) or
627
627
try_to_run (['git' , 'ls-files' ]) or
628
628
try_to_run (['hg' , 'locate' ], cwd = root ) or
629
- try_to_run (['hg' , 'locate' ]) or ['' ]).strip () )
629
+ try_to_run (['hg' , 'locate' ]) or ['' ])) .strip ()
630
630
631
631
if codecov .prefix :
632
632
prefix = codecov .prefix .strip ('/' )
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
from setuptools import setup
3
3
4
- version = '2.0.20 '
4
+ version = '2.0.21 '
5
5
classifiers = ["Development Status :: 5 - Production/Stable" ,
6
6
"Environment :: Plugins" ,
7
7
"Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments