Skip to content

Commit 6ed9f8f

Browse files
committed
Bump to 0.4.1
1 parent d3ee59c commit 6ed9f8f

4 files changed

Lines changed: 8 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@ nosetests.xml
3030
*.mo
3131

3232
*.swp
33+
34+
.idea

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Version 0.4.1 (Dec 1th, 2018)
2+
* gcov: accommodate the execution_count format change in GCC 8.1 (by @ueno)
3+
14
Version 0.4 (July 26th, 2017)
25
* Python 3 compatibility (by @nitnelave)
36
* Add YML config for exclude_lines_pattern. (by @jkjjnitnelave)

cpp_coveralls/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from __future__ import print_function
33

44
__author__ = 'Lei Xu <eddyxu@gmail.com>'
5-
__version__ = '0.4.0'
5+
__version__ = '0.4.1'
66

77
__classifiers__ = [
88
'Development Status :: 3 - Alpha',
@@ -17,7 +17,7 @@
1717
'Topic :: Utilities',
1818
]
1919

20-
__copyright__ = '2017, %s ' % __author__
20+
__copyright__ = '2018, %s ' % __author__
2121
__license__ = """
2222
Copyright %s.
2323

cpp_coveralls/coverage.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ def parse_gcov_file(args, fobj, filename):
288288
coverage.append(int(cov_num.rstrip('*')))
289289
return coverage
290290

291+
291292
def parse_lcov_file_info(args, filepath, line_iter, line_coverage_re, file_end_string):
292293
""" Parse the file content in lcov info file
293294
"""

0 commit comments

Comments
 (0)