CHANGELOG.md in rubocop-rspec-1.26.0 vs CHANGELOG.md in rubocop-rspec-1.27.0

- old
+ new

@@ -1,8 +1,18 @@ # Change log ## Master (Unreleased) +## 1.27.0 (2018-06-14) + +* `RSpec/LeadingSubject` now enforces subject to be before any examples, hooks or let declarations. ([@Darhazer][]) +* Fix `RSpec/NotToNot` to highlight only the selector (`not_to` or `to_not`), so it works also on `expect { ... }` blocks. ([@bquorning][]) +* Add `RSpec/EmptyLineAfterHook` cop. ([@bquorning][]) +* Add `RSpec/EmptyLineAfterExampleGroup` cop to check that there is an empty line after example group blocks. ([@bquorning][]) +* Fix `RSpec/DescribeClass` crashing on `RSpec.describe` without arguments. ([@Darhazer][]) +* Bump RuboCop requirement to v0.56.0. ([@bquorning][]) +* Fix `RSpec/OverwritingSetup` crashing if a variable is used as an argument for `let`. ([@Darhazer][]) + ## 1.26.0 (2018-06-06) * Fix false positive in `RSpec/EmptyExampleGroup` cop when methods named like a RSpec method are used. ([@Darhazer][]) * Fix `Capybara/FeatureMethods` not working when there is require before the spec. ([@Darhazer][]) * Fix `RSpec/EmptyLineAfterFinalLet`: allow a comment to be placed after latest let, requiring empty line after the comment. ([@Darhazer][])