diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c13daef9..ba91b12b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,12 @@ * Move our documentation from rubocop-rspec.readthedocs.io to docs.rubocop.org/rubocop-rspec. ([@bquorning][]) * Add `RSpec/RepeatedIncludeExample` cop. ([@biinari][]) +* Fix false positives in `RSpec/EmptyExampleGroup`. ([@pirj][]) + +## 1.43.2 (2020-08-25) + * Fix `RSpec/FilePath` when checking a file with a shared example. ([@pirj][]) * Fix subject nesting detection in `RSpec/LeadingSubject`. ([@pirj][]) -* Fix false positives in `RSpec/EmptyExampleGroup`. ([@pirj][]) ## 1.43.1 (2020-08-17) diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 5996b9bce..f82daf9dd 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 = '1.43.1' + STRING = '1.43.2' end end end