Skip to content

Commit

Permalink
Merge pull request rubocop#38 from tejasbubane/drop-ruby-2-4
Browse files Browse the repository at this point in the history
Drop support for Ruby 2.4
  • Loading branch information
koic committed May 21, 2021
2 parents 4549fa0 + dcf4cf2 commit 22d72bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ steps: &steps

jobs:

ruby-2.4:
docker:
- image: circleci/ruby:2.4
<<: *steps

ruby-2.5:
docker:
- image: circleci/ruby:2.5
Expand Down Expand Up @@ -42,7 +37,6 @@ workflows:
version: 2
build:
jobs:
- ruby-2.4
- ruby-2.5
- ruby-2.6
- ruby-2.7
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 2.4
TargetRubyVersion: 2.5

InternalAffairs/NodeMatcherDirective:
Enabled: false
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

* [#33](https://github.com/rubocop/rubocop-rake/pull/33): Drop support for Ruby 2.3. ([@koic][])
* [#34](https://github.com/rubocop/rubocop-rake/pull/34): Require RuboCop 1.0 or higher. ([@koic][])
* [#38](https://github.com/rubocop/rubocop-rake/pull/37): Drop support for Ruby 2.4. ([@tejasbubane])

## 0.5.1 (2020-02-14)

Expand Down Expand Up @@ -57,3 +58,4 @@
[@pocke]: https://github.com/pocke
[@jaruuuu]: https://github.com/jaruuuu
[@koic]: https://github.com/koic
[@tejasbubane]: https://github.com/tejasbubane
2 changes: 1 addition & 1 deletion rubocop-rake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.summary = %q{A RuboCop plugin for Rake}
spec.description = %q{A RuboCop plugin for Rake}
spec.homepage = "https://github.com/rubocop/rubocop-rake"
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.licenses = ['MIT']

spec.metadata["allowed_push_host"] = "https://rubygems.org"
Expand Down

0 comments on commit 22d72bc

Please sign in to comment.