Skip to content

Commit

Permalink
Drop support for Ruby 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
koic committed Apr 13, 2020
1 parent bdd4fb1 commit 312e2e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -8,7 +8,7 @@ require:
- rubocop-minitest

AllCops:
TargetRubyVersion: 2.3
TargetRubyVersion: 2.4

Naming/PredicateName:
# Method define macros for dynamically generated method.
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,7 @@
### Changes

* [#73](https://github.com/rubocop-hq/rubocop-minitest/issues/73): The Minitest department works on file names end with `_test.rb` by default. ([@koic][])
* [#77](https://github.com/rubocop-hq/rubocop-minitest/pull/77): **(BREAKING)** Drop support for Ruby 2.3. ([@koic][])

## 0.8.1 (2020-04-06)

Expand Down
2 changes: 1 addition & 1 deletion rubocop-minitest.gemspec
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
DESCRIPTION
spec.license = 'MIT'

spec.required_ruby_version = '>= 2.3.0'
spec.required_ruby_version = '>= 2.4.0'
spec.metadata = {
'homepage_uri' => 'https://docs.rubocop.org/projects/minitest/',
'changelog_uri' => 'https://github.com/rubocop-hq/rubocop-minitest/blob/master/CHANGELOG.md',
Expand Down
2 changes: 1 addition & 1 deletion test/assertion_helper.rb
Expand Up @@ -87,6 +87,6 @@ def parse_source!(source, file = nil)
end

def ruby_version
2.3
2.4
end
end

0 comments on commit 312e2e2

Please sign in to comment.