From 036bda6f45d51b21a23cb95f9aa501b1f485037e Mon Sep 17 00:00:00 2001 From: Maxim Krizhanovski Date: Tue, 21 Sep 2021 11:02:15 +0100 Subject: [PATCH] Bump version to 2.5.0 --- CHANGELOG.md | 4 +++- docs/antora.yml | 2 +- lib/rubocop/rspec/version.rb | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5709637bd..11d7bd710 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.5.0 (2021-09-21) + * Declare autocorrect as unsafe for `ExpectChange`. ([@francois-ferrandis][]) * Fix each example for `RSpec/HookArgument`. ([@lokhi][]) * Exclude unrelated Rails directories from `RSpec/DescribeClass`. ([@MothOnMars][]) @@ -9,7 +11,7 @@ * Add `RSpec/SubjectDeclaration` cop. ([@dswij][]) * Fix excessive whitespace removal in `RSpec/EmptyHook` autocorrection. ([@pirj][]) * Bump RuboCop requirement to v1.19.0. ([@pirj][]) -* Fix false positive in `RSpec/IteratedExpectation` when there is single, non-espectation statement in the block body. ([@Darhazer][]) +* Fix false positive in `RSpec/IteratedExpectation` when there is single, non-expectation statement in the block body. ([@Darhazer][]) ## 2.4.0 (2021-06-09) diff --git a/docs/antora.yml b/docs/antora.yml index bd35f744c..16a12f976 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: master +version: '2.5' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 97e0d7ecd..d38201435 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 = '2.4.0' + STRING = '2.5.0' end end end