Skip to content

Commit 31eed31

Browse files
committed
Drop Ruby 2.7 support as EOL and I have trouble with some deps
1 parent 8d71e1f commit 31eed31

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/stable.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313

1414
matrix:
1515
ruby-version:
16-
- '2.7'
1716
- '3.0'
1817
- '3.1'
1918
- '3.2'

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ AllCops:
1010
- "tmp/**/*"
1111
- "vendor/bundle/**/*"
1212
- "vendor/bundle/**/.*"
13-
TargetRubyVersion: 2.7
13+
TargetRubyVersion: 3.0
1414
NewCops: enable
1515
# we might wanna adopt rspec and rake but it's a bit annoying for now
1616
SuggestExtensions: false

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ SimpleCov.formatter = SimpleCov::Formatter::JSONFormatter
889889

890890
## Ruby version compatibility
891891

892-
SimpleCov is built in [Continuous Integration] on Ruby 2.7+ as well as JRuby 9.3+.
892+
SimpleCov is built in [Continuous Integration] on Ruby 3.0+ as well as JRuby 9.3+.
893893

894894
Note for JRuby => You need to pass JRUBY_OPTS="--debug" or create .jrubyrc and add debug.fullTrace=true
895895

simplecov.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gem::Specification.new do |gem|
3333
"rubygems_mfa_required" => "true"
3434
}
3535

36-
gem.required_ruby_version = ">= 2.7.0"
36+
gem.required_ruby_version = ">= 3.0.0"
3737

3838
gem.add_dependency "docile", "~> 1.1"
3939
gem.add_dependency "simplecov-html", "~> 0.11"

0 commit comments

Comments
 (0)