Skip to content

Commit

Permalink
Bump to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyxu committed Dec 1, 2018
1 parent d3ee59c commit 6ed9f8f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ nosetests.xml
*.mo

*.swp

.idea
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 0.4.1 (Dec 1th, 2018)
* gcov: accommodate the execution_count format change in GCC 8.1 (by @ueno)

Version 0.4 (July 26th, 2017)
* Python 3 compatibility (by @nitnelave)
* Add YML config for exclude_lines_pattern. (by @jkjjnitnelave)
Expand Down
4 changes: 2 additions & 2 deletions cpp_coveralls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import print_function

__author__ = 'Lei Xu <[email protected]>'
__version__ = '0.4.0'
__version__ = '0.4.1'

__classifiers__ = [
'Development Status :: 3 - Alpha',
Expand All @@ -17,7 +17,7 @@
'Topic :: Utilities',
]

__copyright__ = '2017, %s ' % __author__
__copyright__ = '2018, %s ' % __author__
__license__ = """
Copyright %s.
Expand Down
1 change: 1 addition & 0 deletions cpp_coveralls/coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ def parse_gcov_file(args, fobj, filename):
coverage.append(int(cov_num.rstrip('*')))
return coverage


def parse_lcov_file_info(args, filepath, line_iter, line_coverage_re, file_end_string):
""" Parse the file content in lcov info file
"""
Expand Down

0 comments on commit 6ed9f8f

Please sign in to comment.