From a003f94f28cb2548f184f5a9a0d2e132c6a32d35 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 26 Jun 2019 00:52:00 +0900 Subject: [PATCH] Preparing for 2.1.0 release --- CHANGELOG.md | 2 ++ lib/rubocop/rails/version.rb | 2 +- rubocop-rails.gemspec | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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