From b75c484e3aedad8238d31bfe6aa36df390149362 Mon Sep 17 00:00:00 2001 From: Benjamin Quorning Date: Sun, 23 Oct 2022 23:15:13 +0200 Subject: [PATCH] Bump version to 2.14.0 This commit was created by running `bundle exec rake cut_release:minor`. --- CHANGELOG.md | 2 ++ config/default.yml | 6 +++--- docs/antora.yml | 2 +- docs/modules/ROOT/pages/cops_rspec.adoc | 4 ++-- docs/modules/ROOT/pages/cops_rspec_factorybot.adoc | 2 +- lib/rubocop/rspec/version.rb | 2 +- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 316aebf9e..4346961b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.14.0 (2022-10-23) + - Add `require_implicit` style to `RSpec/ImplicitSubject`. ([@r7kamura]) - Fix a false positive for `RSpec/Capybara/SpecificMatcher` when `have_css("a")` without attribute. ([@ydah]) - Update `RSpec/ExampleWording` cop to raise error for insufficient descriptions. ([@akrox58]) diff --git a/config/default.yml b/config/default.yml index 1c36c0e6b..aab6edef2 100644 --- a/config/default.yml +++ b/config/default.yml @@ -194,7 +194,7 @@ RSpec/ChangeByZero: Description: Prefer negated matchers over `to change.by(0)`. Enabled: pending VersionAdded: '2.11' - VersionChanged: "<>" + VersionChanged: '2.14' Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/ChangeByZero NegatedMatcher: ~ @@ -773,7 +773,7 @@ RSpec/SingleArgumentMessageChain: RSpec/SortMetadata: Description: Sort RSpec metadata alphabetically. Enabled: pending - VersionAdded: "<>" + VersionAdded: '2.14' Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/SortMetadata RSpec/StubbedMock: @@ -936,7 +936,7 @@ RSpec/FactoryBot/ConsistentParenthesesStyle: SupportedStyles: - require_parentheses - omit_parentheses - VersionAdded: "<>" + VersionAdded: '2.14' Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/FactoryBot/ConsistentParenthesesStyle RSpec/FactoryBot/CreateList: diff --git a/docs/antora.yml b/docs/antora.yml index bd35f744c..63a78f4c1 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: master +version: '2.14' nav: - modules/ROOT/nav.adoc diff --git a/docs/modules/ROOT/pages/cops_rspec.adoc b/docs/modules/ROOT/pages/cops_rspec.adoc index e4d799540..0b5b467b7 100644 --- a/docs/modules/ROOT/pages/cops_rspec.adoc +++ b/docs/modules/ROOT/pages/cops_rspec.adoc @@ -392,7 +392,7 @@ end | Yes | Yes | 2.11 -| <> +| 2.14 |=== Prefer negated matchers over `to change.by(0)`. @@ -4472,7 +4472,7 @@ allow(foo).to receive("bar.baz") | Pending | Yes | Yes -| <> +| 2.14 | - |=== diff --git a/docs/modules/ROOT/pages/cops_rspec_factorybot.adoc b/docs/modules/ROOT/pages/cops_rspec_factorybot.adoc index 106f52545..d8c11de74 100644 --- a/docs/modules/ROOT/pages/cops_rspec_factorybot.adoc +++ b/docs/modules/ROOT/pages/cops_rspec_factorybot.adoc @@ -59,7 +59,7 @@ count { 1 } | Pending | Yes | Yes -| <> +| 2.14 | - |=== diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 2b86a2edc..cabe7c476 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.13.2' + STRING = '2.14.0' end end end