1+ 0.2.11 (2018-05-01)
2+ ===================
3+ This release primarily contains bug fixes. Some of them resolve bugs where
4+ the parser could panic.
5+
6+ New features:
7+
8+ * [ FEATURE #459 ] ( https://github.com/rust-lang/regex/pull/459 ) :
9+ Include C++'s standard regex library and Boost's regex library in the
10+ benchmark harness. We now include D/libphobos, C++/std, C++/boost, Oniguruma,
11+ PCRE1, PCRE2, RE2 and Tcl in the harness.
12+
13+ Bug fixes:
14+
15+ * [ BUG #445 ] ( https://github.com/rust-lang/regex/issues/445 ) :
16+ Clarify order of indices returned by RegexSet match iterator.
17+ * [ BUG #461 ] ( https://github.com/rust-lang/regex/issues/461 ) :
18+ Improve error messages for invalid regexes like ` [\d-a] ` .
19+ * [ BUG #464 ] ( https://github.com/rust-lang/regex/issues/464 ) :
20+ Fix a bug in the error message pretty printer that could cause a panic when
21+ a regex contained a literal ` \n ` character.
22+ * [ BUG #465 ] ( https://github.com/rust-lang/regex/issues/465 ) :
23+ Fix a panic in the parser that was caused by applying a repetition operator
24+ to ` (?flags) ` .
25+ * [ BUG #466 ] ( https://github.com/rust-lang/regex/issues/466 ) :
26+ Fix a bug where ` \pC ` was not recognized as an alias for ` \p{Other} ` .
27+ * [ BUG #470 ] ( https://github.com/rust-lang/regex/pull/470 ) :
28+ Fix a bug where literal searches did more work than necessary for anchored
29+ regexes.
30+
31+
1320.2.10 (2018-03-16)
233===================
334This release primarily updates the regex crate to changes made in ` std::arch `
@@ -23,7 +54,7 @@ New features:
2354 The regex crate now includes AVX2 optimizations in addition to the extant
2455 SSSE3 optimization.
2556
26- Bug gixes :
57+ Bug fixes :
2758
2859* [ BUG #455 ] ( https://github.com/rust-lang/regex/pull/455 ) :
2960 Fix a bug where ` (?x)[ / - ] ` failed to parse.
0 commit comments