From c4d7fa94c6dcc13264167a8b487f34072465c12f Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Mon, 2 Jan 2017 10:45:45 -0500 Subject: [PATCH] Add compile->build rename breaking change to CHANGELOG. Fixes #316 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c7ecfcfe4..b45a27950a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,6 +52,7 @@ Breaking changes for the regex API: * The `RegexBuilder` type has switched from owned `self` method receivers to `&mut self` method receivers. Most uses will continue to work unchanged, but some code may require naming an intermediate variable to hold the builder. +* The `compile` method on `RegexBuilder` has been renamed to `build`. * The free `is_match` function has been removed. It is replaced by compiling a `Regex` and calling its `is_match` method. * The `PartialEq` and `Eq` impls on `Regex` have been dropped. If you relied