1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00

Move deprecations first, before bug fixes etc.

This commit is contained in:
Elliot Winkler 2014-09-03 00:31:03 -06:00
parent 29b144651b
commit d53ee94874

16
NEWS.md
View file

@ -1,5 +1,13 @@
# HEAD
### Deprecations
* `ensure_inclusion_of` has been renamed to `validate_inclusion_of`.
`ensure_inclusion_of` is deprecated and will be removed in 3.0.0.
* `ensure_exclusion_of` has been renamed to `validate_exclusion_of`.
`ensure_exclusion_of` is deprecated and will be removed in 3.0.0.
### Bug fixes
* Fix `delegate_method` so that it does not raise an error if the method that
@ -36,14 +44,6 @@
* Reword failure message for `delegate_method` so that it's a little more
helpful.
### Deprecations
* `ensure_inclusion_of` has been renamed to `validate_inclusion_of`.
`ensure_inclusion_of` is deprecated and will be removed in 3.0.0.
* `ensure_exclusion_of` has been renamed to `validate_exclusion_of`.
`ensure_exclusion_of` is deprecated and will be removed in 3.0.0.
### Features
* Add new matcher `define_enum_for` to test usage of the `enum` macro introduced