Skip to content

Commit

Permalink
Drop Ruby 2.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
renawatson68 committed Apr 6, 2021
1 parent ac4e52c commit f24670b
Show file tree
Hide file tree
Showing 8 changed files with 365 additions and 436 deletions.
3 changes: 0 additions & 3 deletions .circleci/config.yml
Expand Up @@ -38,9 +38,6 @@ workflows:
build:
jobs:
- documentation-checks
- rake_default:
name: Ruby 2.4
image: circleci/ruby:2.4
- rake_default:
name: Ruby 2.5
image: circleci/ruby:2.5
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -12,7 +12,7 @@ AllCops:
- 'vendor/**/*'
- 'spec/fixtures/**/*'
- 'tmp/**/*'
TargetRubyVersion: 2.4
TargetRubyVersion: 2.5
SuggestExtensions: false

InternalAffairs/NodeMatcherDirective:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
### Changes

* [#228](https://github.com/rubocop/rubocop-performance/pull/228): Mark `Performance/RedundantMerge` as unsafe. ([@dvandersluis][])
* [#232](https://github.com/rubocop/rubocop-performance/pull/232): Drop Ruby 2.4 support. ([@koic][])

## 1.10.2 (2021-03-23)

Expand Down
2 changes: 1 addition & 1 deletion rubocop-performance.gemspec
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.name = 'rubocop-performance'
s.version = RuboCop::Performance::Version::STRING
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.4.0'
s.required_ruby_version = '>= 2.5.0'
s.authors = ['Bozhidar Batsov', 'Jonas Arvidsson', 'Yuji Nakayama']
s.description = <<~DESCRIPTION
A collection of RuboCop cops to check for performance optimizations
Expand Down

0 comments on commit f24670b

Please sign in to comment.