1<a name="v2.2.2"></a>
2### v2.2.2 - 2021-10-20
3Reexpose features of the regex crate
4
5<a name="v2.2.1"></a>
6### v2.2.1 - 2021-06-07
7Add the `regex_replace!` macro for when you only want to replace one match
8Reexports more types of the regex crates
9
10<a name="v2.2.0"></a>
11### v2.2.0 - 2021-06-04
12Add the `regex_replace_all!` macro to do replacements with a closure taking the right number of `&str` arguments according to the number of groups in the regular expression
13
14<a name="v2.1.0"></a>
15### v2.1.0 - 2021-06-02
16Add the `lazy_regex!` macro returning a `Lazy<Regex>` for easy use in a `pub static` shared declaration.
17
18<a name="v2.0.2"></a>
19### v2.0.2 - 2021-05-31
20Fix a cross compilation problem, thanks @AlephAlpha - Fix #5
21
22<a name="v2.0.1"></a>
23### v2.0.1 - 2021-05-20
24Improved documentation
25
26<a name="v2.0.0"></a>
27### v2.0.0 - 2021-05-17
28- regular expressions are now checked at compile time
29- regex_is_match!
30- regex_find!
31- regex_captures!
32
33<a name="v1.1.0"></a>
34### v1.1.0 - 2021-05-08
35- no more complementary import needed
36- now based on once_cell instead of lazy_static
37
38<a name="v1.0.0"></a>
39### v1.0.0 - 2021-05-04
40- first public release
41