Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

0.2.14 #117

Merged
merged 4 commits into from
Dec 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### `0.2.14`
- #107 Add EditorConfig file
- #113 Return version constant, don't duplicate version value
- #117 Update simplecov dependency versions

### `0.2.13`
- [#105](https://github.com/codecov/codecov-ruby/pull/105) Remove unnecessary dependency for ruby standard gem
- [#110](https://github.com/codecov/codecov-ruby/pull/110) Fix GitHub Actions
Expand Down
2 changes: 1 addition & 1 deletion codecov.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '~> 2.4'
s.version = ::Codecov::VERSION

s.add_dependency 'simplecov', '~> 0.18.0'
s.add_dependency 'simplecov', '>= 0.15', '< 0.21'

s.add_development_dependency 'minitest', '~> 5.0'
s.add_development_dependency 'minitest-ci', '~> 3.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/codecov/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Codecov
VERSION = '0.2.13'
VERSION = '0.2.14'
end