Skip to content

Commit

Permalink
Bump version to 2.14.0
Browse files Browse the repository at this point in the history
This commit was created by running `bundle exec rake cut_release:minor`.
  • Loading branch information
bquorning committed Oct 23, 2022
1 parent 6f301fa commit b75c484
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
6 changes: 3 additions & 3 deletions config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ RSpec/ChangeByZero:
Description: Prefer negated matchers over `to change.by(0)`.
Enabled: pending
VersionAdded: '2.11'
VersionChanged: "<<next>>"
VersionChanged: '2.14'
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/ChangeByZero
NegatedMatcher: ~

Expand Down Expand Up @@ -773,7 +773,7 @@ RSpec/SingleArgumentMessageChain:
RSpec/SortMetadata:
Description: Sort RSpec metadata alphabetically.
Enabled: pending
VersionAdded: "<<next>>"
VersionAdded: '2.14'
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/SortMetadata

RSpec/StubbedMock:
Expand Down Expand Up @@ -936,7 +936,7 @@ RSpec/FactoryBot/ConsistentParenthesesStyle:
SupportedStyles:
- require_parentheses
- omit_parentheses
VersionAdded: "<<next>>"
VersionAdded: '2.14'
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/FactoryBot/ConsistentParenthesesStyle

RSpec/FactoryBot/CreateList:
Expand Down
2 changes: 1 addition & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rubocop-rspec
title: RuboCop RSpec
version: master
version: '2.14'
nav:
- modules/ROOT/nav.adoc
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/cops_rspec.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ end
| Yes
| Yes
| 2.11
| <<next>>
| 2.14
|===

Prefer negated matchers over `to change.by(0)`.
Expand Down Expand Up @@ -4472,7 +4472,7 @@ allow(foo).to receive("bar.baz")
| Pending
| Yes
| Yes
| <<next>>
| 2.14
| -
|===

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/cops_rspec_factorybot.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ count { 1 }
| Pending
| Yes
| Yes
| <<next>>
| 2.14
| -
|===

Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/rspec/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b75c484

Please sign in to comment.