diff --git a/lib/sgcop/version.rb b/lib/sgcop/version.rb index dd1ce32..b3f80a2 100644 --- a/lib/sgcop/version.rb +++ b/lib/sgcop/version.rb @@ -1,3 +1,3 @@ module Sgcop - VERSION = '1.1.2'.freeze + VERSION = '1.1.3'.freeze end diff --git a/ruby/rubocop.yml b/ruby/rubocop.yml index 25da918..36eac0a 100644 --- a/ruby/rubocop.yml +++ b/ruby/rubocop.yml @@ -461,6 +461,12 @@ Style/SuperArguments: # new in 1.64 # https://docs.rubocop.org/rubocop/cops_gemspec.html#gemspecaddruntimedependency Gemspec/AddRuntimeDependency: # new in 1.65 Enabled: true +# https://docs.rubocop.org/rubocop/cops_lint.html#lintuselessnumericoperation +Lint/UselessNumericOperation: # new in 1.66 + Enabled: true +# https://docs.rubocop.org/rubocop/cops_style.html#styleredundantinterpolationunfreeze +Style/RedundantInterpolationUnfreeze: # new in 1.66 + Enabled: true # ============================================================ # Lint diff --git a/sgcop.gemspec b/sgcop.gemspec index a694d84..40b613e 100644 --- a/sgcop.gemspec +++ b/sgcop.gemspec @@ -27,7 +27,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_dependency 'rubocop', '~> 1.65.0' + spec.add_dependency 'rubocop', '~> 1.66.0' spec.add_dependency 'rubocop-capybara', '~> 2.21.0' spec.add_dependency 'rubocop-factory_bot', '~> 2.26.0' spec.add_dependency 'rubocop-performance', '~> 1.21.0'