diff --git a/CHANGELOG.md b/CHANGELOG.md index bf2db2f4..2496c68f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # rubocop-github +## v0.23.0 + +- Read the automatic release notes on [the /releases page for this gem](https://github.com/github/rubocop-github/releases). + ## v0.22.0 - Read the automatic release notes on [the /releases page for this gem](https://github.com/github/rubocop-github/releases). diff --git a/Gemfile.lock b/Gemfile.lock index d4bfa04e..8c60f672 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ PATH remote: . specs: - rubocop-github (0.22.0) - rubocop (>= 1.37) - rubocop-performance (>= 1.15) - rubocop-rails (>= 2.17) + rubocop-github (0.23.0) + rubocop (>= 1.72) + rubocop-performance (>= 1.24) + rubocop-rails (>= 2.23) GEM remote: https://rubygems.org/ @@ -75,7 +75,7 @@ GEM rainbow (3.1.1) rake (13.2.1) regexp_parser (2.10.0) - rubocop (1.72.2) + rubocop (1.73.0) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) @@ -86,7 +86,7 @@ GEM rubocop-ast (>= 1.38.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.38.0) + rubocop-ast (1.38.1) parser (>= 3.3.1.0) rubocop-performance (1.24.0) lint_roller (~> 1.1) diff --git a/config/default.yml b/config/default.yml index 52d44625..cf5d193e 100644 --- a/config/default.yml +++ b/config/default.yml @@ -3,6 +3,8 @@ inherit_from: require: - rubocop-github + +plugins: - rubocop-performance Bundler/DuplicatedGem: diff --git a/config/rails.yml b/config/rails.yml index b7b8d6ec..80458562 100644 --- a/config/rails.yml +++ b/config/rails.yml @@ -3,6 +3,8 @@ inherit_from: require: - rubocop-github-rails + +plugins: - rubocop-rails GitHub/RailsControllerRenderActionSymbol: diff --git a/lib/version.rb b/lib/version.rb index 3ed48bc6..fd3043d4 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,3 +1,3 @@ # frozen_string_literal: true -VERSION = "0.22.0" +VERSION = "0.23.0" diff --git a/rubocop-github.gemspec b/rubocop-github.gemspec index 8f0f0ef4..18b5aff9 100644 --- a/rubocop-github.gemspec +++ b/rubocop-github.gemspec @@ -20,9 +20,9 @@ Gem::Specification.new do |s| s.required_ruby_version = ">= 3.0.0" - s.add_dependency "rubocop", ">= 1.37" - s.add_dependency "rubocop-performance", ">= 1.15" - s.add_dependency "rubocop-rails", ">= 2.17" + s.add_dependency "rubocop", ">= 1.72" + s.add_dependency "rubocop-performance", ">= 1.24" + s.add_dependency "rubocop-rails", ">= 2.23" s.add_development_dependency "actionview", "~> 7.1.5.1" s.add_development_dependency "minitest"