Skip to content

Commit

Permalink
Merge pull request #1763 from rubocop/release
Browse files Browse the repository at this point in the history
Bump version to v2.26.0
  • Loading branch information
bquorning committed Jan 4, 2024
2 parents 2825622 + d1f0725 commit 97407ea
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

## Master (Unreleased)

## 2.26.0 (2024-01-04)

- Add new `RSpec/RedundantPredicateMatcher` cop. ([@ydah])
- Add support for correcting "it will" (future tense) for `RSpec/ExampleWording`. ([@jdufresne])
- Add new `RSpec/RemoveConst` cop. ([@swelther])
- Ensure `PendingWithoutReason` can detect violations inside shared groups. ([@robinaugh])
- Add support for correcting "it will" (future tense) for `RSpec/ExampleWording`. ([@jdufresne])
- Add support for `symbol` style for `RSpec/SharedExamples`. ([@jessieay])
- Ensure `PendingWithoutReason` can detect violations inside shared groups. ([@robinaugh])

## 2.25.0 (2023-10-27)

Expand Down
6 changes: 3 additions & 3 deletions config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -774,13 +774,13 @@ RSpec/RedundantAround:
RSpec/RedundantPredicateMatcher:
Description: Checks for redundant predicate matcher.
Enabled: pending
VersionAdded: "<<next>>"
VersionAdded: '2.26'
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/RedundantPredicateMatcher

RSpec/RemoveConst:
Description: Checks that `remove_const` is not used in specs.
Enabled: pending
VersionAdded: "<<next>>"
VersionAdded: '2.26'
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/RemoveConst

RSpec/RepeatedDescription:
Expand Down Expand Up @@ -851,7 +851,7 @@ RSpec/SharedExamples:
- string
- symbol
VersionAdded: '1.25'
VersionChanged: "<<next>>"
VersionChanged: '2.26'
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/SharedExamples

RSpec/SingleArgumentMessageChain:
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: ~
version: '2.26'
nav:
- modules/ROOT/nav.adoc
6 changes: 3 additions & 3 deletions docs/modules/ROOT/pages/cops_rspec.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4502,7 +4502,7 @@ end
| Pending
| Yes
| Yes
| <<next>>
| 2.26
| -
|===

Expand Down Expand Up @@ -4533,7 +4533,7 @@ expect(foo).not_to include(bar)
| Pending
| Yes
| No
| <<next>>
| 2.26
| -
|===

Expand Down Expand Up @@ -5050,7 +5050,7 @@ end
| Yes
| Yes
| 1.25
| <<next>>
| 2.26
|===

Checks for consistent style for shared example names.
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.25.0'
STRING = '2.26.0'
end
end
end

0 comments on commit 97407ea

Please sign in to comment.