From 5da8487ff05b9760c90e2feb3b22827d2cb4ec90 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 20 Jun 2019 15:06:37 +0900 Subject: [PATCH] Preparing for 1.4.0 release --- CHANGELOG.md | 2 ++ lib/rubocop/performance/version.rb | 2 +- rubocop-performance.gemspec | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccf7e65dff..8f89b1fe1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 1.4.0 (2019-06-20) + ### Bug fixes * [#54](https://github.com/rubocop-hq/rubocop-performance/issues/54): Fix `Performance/FixedSize` to accept const assign with some operation. ([@tejasbubane][]) diff --git a/lib/rubocop/performance/version.rb b/lib/rubocop/performance/version.rb index f376e2a7f3..a18d23035c 100644 --- a/lib/rubocop/performance/version.rb +++ b/lib/rubocop/performance/version.rb @@ -3,7 +3,7 @@ module RuboCop module Performance module Version - STRING = '1.3.0' + STRING = '1.4.0' end end end diff --git a/rubocop-performance.gemspec b/rubocop-performance.gemspec index 98d2a1c3fc..96823164e8 100644 --- a/rubocop-performance.gemspec +++ b/rubocop-performance.gemspec @@ -29,6 +29,6 @@ Gem::Specification.new do |s| 'bug_tracker_uri' => 'https://github.com/rubocop-hq/rubocop-performance/issues' } - s.add_runtime_dependency('rubocop', '>= 0.68.0') + s.add_runtime_dependency('rubocop', '>= 0.71.0') s.add_development_dependency('simplecov') end