From fa3ad7df4d5b1e711f4c1291b365aa2e4f813d9a Mon Sep 17 00:00:00 2001 From: Thomas Hu Date: Thu, 6 Aug 2020 17:42:01 -0400 Subject: [PATCH 1/2] Bump to 0.2.4 --- CHANGELOG.md | 3 +++ codecov.gemspec | 2 +- lib/codecov.rb | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9c57f5..d8b1ac2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### `0.2.4` +- Adds support for GitHub Actions CI + ### `0.2.3` - Support uploads for jruby 9.1 and 9.2 diff --git a/codecov.gemspec b/codecov.gemspec index b0c5ebb..3524f6d 100644 --- a/codecov.gemspec +++ b/codecov.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'codecov' - s.version = '0.2.3' + s.version = '0.2.4' s.platform = Gem::Platform::RUBY s.authors = ['codecov'] s.email = ['hello@codecov.io'] diff --git a/lib/codecov.rb b/lib/codecov.rb index 225fada..20278fa 100644 --- a/lib/codecov.rb +++ b/lib/codecov.rb @@ -8,7 +8,7 @@ require 'zlib' class SimpleCov::Formatter::Codecov - VERSION = '0.2.3' + VERSION = '0.2.4' ### CIs RECOGNIZED_CIS = [ From 92349cd3fbda234150e3a96b02c2f9cfd2f5fc4f Mon Sep 17 00:00:00 2001 From: Thomas Hu Date: Thu, 6 Aug 2020 18:49:34 -0400 Subject: [PATCH 2/2] Use the version --- codecov.gemspec | 2 +- lib/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codecov.gemspec b/codecov.gemspec index d227981..389ea2a 100644 --- a/codecov.gemspec +++ b/codecov.gemspec @@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'version' Gem::Specification.new do |s| - s.name = 'codecov + s.name = 'codecov' s.version = Version::LATEST s.platform = Gem::Platform::RUBY s.authors = ['codecov'] diff --git a/lib/version.rb b/lib/version.rb index 6ac6454..c420d41 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class Version - LATEST = '0.2.3' + LATEST = '0.2.4' end