From df4841725c9b40bd748cb8c60a793768ae452212 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 13 May 2019 18:38:20 +0900 Subject: [PATCH] Preparing for 1.3.0 release --- CHANGELOG.md | 2 ++ lib/rubocop/performance/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3fa99ee63..9a911ef288 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 1.3.0 (2019-05-13) + ### Bug fixes * [#48](https://github.com/rubocop-hq/rubocop-performance/issues/48): Reduce `Performance/RegexpMatch` false positive by only flagging `match` used with Regexp/String/Symbol literals. ([@dduugg][]) diff --git a/lib/rubocop/performance/version.rb b/lib/rubocop/performance/version.rb index 3ebc5837c4..f376e2a7f3 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.2.0' + STRING = '1.3.0' end end end