Skip to content

Commit 9e6a6c7

Browse files
authored
Merge pull request #330 from koic/fix_require_rubocop_version_for_plugin
Update `add_dependency` of RuboCop to 1.72 for plugin support
2 parents e33a747 + a306885 commit 9e6a6c7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
run: |
9292
sed -e "/gem 'rubocop', github: 'rubocop\/rubocop'/d" -i Gemfile
9393
cat << EOF > Gemfile.local
94-
gem 'rubocop', '1.72.0' # Specify the oldest supported RuboCop version
94+
gem 'rubocop', '1.72.1' # Specify the oldest supported RuboCop version
9595
EOF
9696
- name: set up Ruby
9797
uses: ruby/setup-ruby@v1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* [#330](https://github.com/rubocop/rubocop-minitest/pull/330): Update `add_dependency` of RuboCop to 1.72 for plugin support. ([@koic][])

rubocop-minitest.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ Gem::Specification.new do |spec|
3434
spec.require_paths = ['lib']
3535

3636
spec.add_dependency 'lint_roller', '~> 1.1'
37-
spec.add_dependency 'rubocop', '>= 1.61', '< 2.0'
37+
spec.add_dependency 'rubocop', '>= 1.72.1', '< 2.0'
3838
spec.add_dependency 'rubocop-ast', '>= 1.38.0', '< 2.0'
3939
end

0 commit comments

Comments
 (0)