From b2b2f975c04228ddffcc46aafec37468baf3c29c Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 14 Mar 2019 16:33:30 +0900 Subject: [PATCH] Preparing for 1.0.0 release Follow up of https://github.com/rubocop-hq/rubocop/issues/5977#issuecomment-472340928. This PR prepares for release 1.0.0. --- 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 7257989c01..76c3358f5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 1.0.0 (2019-03-14) + ### New features * Extract performance cops from rubocop-hq/rubocop repository. ([@composerinteralia][], [@koic][]) diff --git a/lib/rubocop/performance/version.rb b/lib/rubocop/performance/version.rb index 5852870989..82629a504b 100644 --- a/lib/rubocop/performance/version.rb +++ b/lib/rubocop/performance/version.rb @@ -3,7 +3,7 @@ module RuboCop module Performance module Version - STRING = '0.0.1'.freeze + STRING = '1.0.0'.freeze end end end