From 53d241801364d76f18e0ec7475b229d6887af503 Mon Sep 17 00:00:00 2001 From: John Backus Date: Tue, 21 Feb 2017 22:36:59 -0800 Subject: [PATCH 1/2] Update changelog for RSpec/BeforeAfterAll cop --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc25765c8..d6f1936d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Master (unreleased) * Add `RSpec/InstanceSpy` cop. ([@Darhazer][]) +* Add `RSpec/BeforeAfterAll` for avoiding leaky global test setup. ([@cfabianski][]) ## 1.11.0 (2017-02-16) @@ -182,3 +183,4 @@ [@onk]: /~https://github.com/onk [@Darhazer]: /~https://github.com/Darhazer [@redross]: /~https://github.com/redross +[@cfabianski]: /~https://github.com/cfabianski From 9ab3b5cc0c3efdc672c83d2ec68ebd161721d6a7 Mon Sep 17 00:00:00 2001 From: John Backus Date: Tue, 21 Feb 2017 22:38:01 -0800 Subject: [PATCH 2/2] Bump version to 1.12.0 --- CHANGELOG.md | 4 +++- lib/rubocop/rspec/version.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6f1936d9..a2d464bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change log -## Master (unreleased) +## Master (Unreleased) + +## 1.12.0 (2017-02-21) * Add `RSpec/InstanceSpy` cop. ([@Darhazer][]) * Add `RSpec/BeforeAfterAll` for avoiding leaky global test setup. ([@cfabianski][]) diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 95fed3da4..36cd30f7b 100644 --- a/lib/rubocop/rspec/version.rb +++ b/lib/rubocop/rspec/version.rb @@ -4,7 +4,7 @@ module RuboCop module RSpec # Version information for the RSpec RuboCop plugin. module Version - STRING = '1.11.0'.freeze + STRING = '1.12.0'.freeze end end end