diff --git a/CHANGELOG.md b/CHANGELOG.md index a1afc7b5b1..4a9b30e638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ * [#263](https://github.com/rubocop-hq/rubocop-rails/pull/263): Change terminology to `ForbiddenMethods` and `AllowedMethods`. ([@jcoyne][]) * [#289](https://github.com/rubocop-hq/rubocop-rails/pull/289): Update `Rails/SkipsModelValidations` to register an offense for `insert_all`, `touch_all`, `upsert_all`, etc. ([@eugeneius][]) +* [#293](https://github.com/rubocop-hq/rubocop-rails/pull/293): Require RuboCop 0.87 or higher. ([@koic][]) ## 2.6.0 (2020-06-08) diff --git a/rubocop-rails.gemspec b/rubocop-rails.gemspec index 0f1fcc9ade..3a0751fcae 100644 --- a/rubocop-rails.gemspec +++ b/rubocop-rails.gemspec @@ -35,5 +35,5 @@ Gem::Specification.new do |s| # Rack::Utils::SYMBOL_TO_STATUS_CODE, which is used by HttpStatus cop, was # introduced in rack 1.1 s.add_runtime_dependency 'rack', '>= 1.1' - s.add_runtime_dependency 'rubocop', '>= 0.82.0' + s.add_runtime_dependency 'rubocop', '>= 0.87.0' end