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

Bump version to v1.43.0 #998

Merged
merged 1 commit into from Aug 17, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Master (Unreleased)

## 1.43.0 (2020-08-17)

* Add a new base cop class `::RuboCop::Cop::RSpec::Base`. The old base class `::RuboCop::Cop::RSpec::Cop` is deprecated, and will be removed in the next major release. ([@bquorning][])
* Add support for subject detection after includes and example groups in `RSpec/LeadingSubject`. ([@pirj][])
* Ignore trailing punctuation in context description prefix. ([@elliterate][])
Expand Down
1 change: 1 addition & 0 deletions config/default.yml
Expand Up @@ -399,6 +399,7 @@ RSpec/MultipleMemoizedHelpers:
Enabled: true
AllowSubject: true
Max: 5
VersionAdded: '1.43'
StyleGuide: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/MultipleMemoizedHelpers

RSpec/MultipleSubjects:
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/rspec/version.rb
Expand Up @@ -4,7 +4,7 @@ module RuboCop
module RSpec
# Version information for the RSpec RuboCop plugin.
module Version
STRING = '1.42.0'
STRING = '1.43.0'
end
end
end
2 changes: 1 addition & 1 deletion manual/cops_rspec.md
Expand Up @@ -2123,7 +2123,7 @@ Max | `1` | Integer

Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
--- | --- | --- | --- | ---
Enabled | Yes | No | - | -
Enabled | Yes | No | 1.43 | -

Checks if example groups contain too many `let` and `subject` calls.

Expand Down