From 6ed9f8f0f67bb9f293187d249cbef40718cb2d25 Mon Sep 17 00:00:00 2001 From: Lei Xu Date: Sat, 1 Dec 2018 11:12:24 -0800 Subject: [PATCH] Bump to 0.4.1 --- .gitignore | 2 ++ CHANGELOG.md | 3 +++ cpp_coveralls/__init__.py | 4 ++-- cpp_coveralls/coverage.py | 1 + 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 77196cb..9e4f131 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,5 @@ nosetests.xml *.mo *.swp + +.idea diff --git a/CHANGELOG.md b/CHANGELOG.md index 480d9ea..d67c073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/cpp_coveralls/__init__.py b/cpp_coveralls/__init__.py index baa8e80..30ae4c4 100644 --- a/cpp_coveralls/__init__.py +++ b/cpp_coveralls/__init__.py @@ -2,7 +2,7 @@ from __future__ import print_function __author__ = 'Lei Xu ' -__version__ = '0.4.0' +__version__ = '0.4.1' __classifiers__ = [ 'Development Status :: 3 - Alpha', @@ -17,7 +17,7 @@ 'Topic :: Utilities', ] -__copyright__ = '2017, %s ' % __author__ +__copyright__ = '2018, %s ' % __author__ __license__ = """ Copyright %s. diff --git a/cpp_coveralls/coverage.py b/cpp_coveralls/coverage.py index 965fdb1..f39f44d 100644 --- a/cpp_coveralls/coverage.py +++ b/cpp_coveralls/coverage.py @@ -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 """