From d53ee948743cbcbf37f587b1843c70803c63cb0a Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Wed, 3 Sep 2014 00:31:03 -0600 Subject: [PATCH] Move deprecations first, before bug fixes etc. --- NEWS.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/NEWS.md b/NEWS.md index 896b7e20e..a3ed44cc1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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