diff --git a/.gitignore b/.gitignore index 35b4f5b..25f6e98 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ test/tmp test/version_tmp tmp bin/ +vendor/ # YARD artifacts .yardoc diff --git a/CHANGELOG.md b/CHANGELOG.md index f89036a..f9ed0a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # rubocop-github +## v0.26.0 + +- Read the automatic release notes on [the /releases page for this gem](https://github.com/github/rubocop-github/releases). + ## v0.25.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 e858888..454de7b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - rubocop-github (0.25.0) - rubocop (>= 1.72) + rubocop-github (0.26.0) + rubocop (>= 1.76) rubocop-performance (>= 1.24) rubocop-rails (>= 2.23) @@ -35,7 +35,7 @@ GEM concurrent-ruby (1.3.5) connection_pool (2.5.3) crass (1.0.6) - drb (2.2.1) + drb (2.2.3) erubi (1.13.1) i18n (1.14.7) concurrent-ruby (~> 1.0) @@ -63,7 +63,7 @@ GEM racc prism (1.4.0) racc (1.8.1) - rack (3.1.14) + rack (3.1.15) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest @@ -74,7 +74,7 @@ GEM rainbow (3.1.1) rake (13.2.1) regexp_parser (2.10.0) - rubocop (1.75.7) + rubocop (1.76.0) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) @@ -82,22 +82,22 @@ GEM parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.44.0, < 2.0) + rubocop-ast (>= 1.45.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.44.1) + rubocop-ast (1.45.0) parser (>= 3.3.7.2) prism (~> 1.4) rubocop-performance (1.25.0) lint_roller (~> 1.1) rubocop (>= 1.75.0, < 2.0) rubocop-ast (>= 1.38.0, < 2.0) - rubocop-rails (2.31.0) + rubocop-rails (2.32.0) activesupport (>= 4.2.0) lint_roller (~> 1.1) rack (>= 1.1) rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.38.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) ruby-progressbar (1.13.0) securerandom (0.4.1) tzinfo (2.0.6) diff --git a/config/default.yml b/config/default.yml index ff7eec8..55fb0af 100644 --- a/config/default.yml +++ b/config/default.yml @@ -818,7 +818,7 @@ Naming/MethodName: Naming/MethodParameterName: Enabled: false -Naming/PredicateName: +Naming/PredicatePrefix: Enabled: false Naming/RescuedExceptionsVariableName: diff --git a/lib/version.rb b/lib/version.rb index a9f2b95..8463eaf 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,3 +1,3 @@ # frozen_string_literal: true -VERSION = "0.25.0" +VERSION = "0.26.0" diff --git a/rubocop-github.gemspec b/rubocop-github.gemspec index 43cb7e3..b1cf9cc 100644 --- a/rubocop-github.gemspec +++ b/rubocop-github.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |s| s.required_ruby_version = ">= 3.1.0" - s.add_dependency "rubocop", ">= 1.72" + s.add_dependency "rubocop", ">= 1.76" s.add_dependency "rubocop-performance", ">= 1.24" s.add_dependency "rubocop-rails", ">= 2.23"