CHANGELOG.md in rubocop-rspec-1.8.0 vs CHANGELOG.md in rubocop-rspec-1.9.0
- old
+ new
@@ -1,9 +1,16 @@
# Change log
## Master (unreleased)
+## 1.9.0 (2016-12-29)
+
+* Add `MessageSpies` cop for enforcing consistent style of either `expect(...).to have_received` or `expect(...).to receive`, intended as a replacement for the `MessageExpectation` cop. ([@bquorning][])
+* Fix `DescribeClass` to not flag `describe` at the top of a block of shared examples. ([@clupprich][])
+* Add `SingleArgumentMessageChain` cop for recommending use of `receive` instead of `receive_message_chain` where possible. ([@bquorning][])
+* Add `RepeatedDescription` cop for detecting repeated example descriptions within example groups. ([@backus][])
+
## 1.8.0 (2016-10-27)
* Optionally ignore method names in the `describe` argument when running the `FilePath` cop. ([@bquorning][])
* Fix regression in how `FilePath` converts alphanumeric class names into paths. ([@bquorning][])
* Add `ImplicitExpect` cop for enforcing `should` vs. `is_expected.to`. ([@backus][])
@@ -146,5 +153,6 @@
[@mlarraz]: https://github.com/mlarraz
[@renanborgescampos]: https://github.com/renanborgescampos
[@jaredmoody]: https://github.com/jaredmoody
[@baberthal]: https://github.com/baberthal
[@jeffreyc]: https://github.com/jeffreyc
+[@clupprich]: https://github.com/clupprich