diff --git a/CHANGELOG.md b/CHANGELOG.md index 47b7812596..d5678fa2c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 2.1.0 (2019-06-26) + ### Bug fixes * [#43](https://github.com/rubocop-hq/rubocop-rails/issues/43): Remove `change_column_null` method from `BulkChangeTable` cop offenses. ([@anthony-robin][]) diff --git a/lib/rubocop/rails/version.rb b/lib/rubocop/rails/version.rb index 246c39cfb4..2f7a144b1c 100644 --- a/lib/rubocop/rails/version.rb +++ b/lib/rubocop/rails/version.rb @@ -4,7 +4,7 @@ module RuboCop module Rails # This module holds the RuboCop Rails version information. module Version - STRING = '2.0.1' + STRING = '2.1.0' end end end diff --git a/rubocop-rails.gemspec b/rubocop-rails.gemspec index fdb6307566..541ccdc135 100644 --- a/rubocop-rails.gemspec +++ b/rubocop-rails.gemspec @@ -34,6 +34,6 @@ 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.70.0' + s.add_runtime_dependency 'rubocop', '>= 0.72.0' end # rubocop:enable Metrics/BlockLength