Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.29.0 #37

Merged
merged 1 commit into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.29.0 (2024-06-08)

- Support `AutoCorrect: contextual` option for LSP. ([@ydah])

## 2.28.3 (2024-04-11)
Expand Down
2 changes: 1 addition & 1 deletion config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ RSpecRails/NegationBeValid:
- be_invalid
Enabled: pending
VersionAdded: '2.23'
VersionChanged: "<<next>>"
VersionChanged: '2.29'
Reference: https://www.rubydoc.info/gems/rubocop-rspec_rails/RuboCop/Cop/RSpecRails/NegationBeValid

RSpecRails/TravelAround:
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_rails
title: RuboCop RSpec Rails
version: ~
version: '2.29'
nav:
- modules/ROOT/nav.adoc
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/cops_rspecrails.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ expect(a).to be(false)
| No
| Command-line only (Unsafe)
| 2.23
| <<next>>
| 2.29
|===

Enforces use of `be_invalid` or `not_to` for negated be_valid.
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/rspec_rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module RuboCop
module RSpecRails
# Version information for the RSpec Rails RuboCop plugin.
module Version
STRING = '2.28.3'
STRING = '2.29.0'
end
end
end
Loading