diff --git a/CHANGELOG.md b/CHANGELOG.md index 40b521c..0684685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### `0.2.11` +- Add vendor/ to invalid directories + ### `0.2.10` - Adds better logging on error cases - Add more invalid directories in the network diff --git a/codecov.gemspec b/codecov.gemspec index dfd74b9..b58dc3b 100644 --- a/codecov.gemspec +++ b/codecov.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.required_ruby_version = '>=2.4' s.summary = 'hosted code coverage ruby/rails reporter' s.test_files = ['test/test_codecov.rb'] - s.version = '0.2.10' + s.version = '0.2.11' s.add_dependency 'json' s.add_dependency 'simplecov' diff --git a/lib/codecov.rb b/lib/codecov.rb index 9833916..cb74e43 100644 --- a/lib/codecov.rb +++ b/lib/codecov.rb @@ -7,7 +7,7 @@ require 'zlib' class SimpleCov::Formatter::Codecov - VERSION = '0.2.10' + VERSION = '0.2.11' ### CIs RECOGNIZED_CIS = [ @@ -512,7 +512,8 @@ def file_network 'node_modules/', 'public/', 'storage/', - 'tmp/' + 'tmp/', + 'vendor/' ] puts [green('==>'), 'Appending file network'].join(' ')