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
+
1
32
0.2.10 (2018-03-16)
2
33
===================
3
34
This release primarily updates the regex crate to changes made in ` std::arch `
@@ -23,7 +54,7 @@ New features:
23
54
The regex crate now includes AVX2 optimizations in addition to the extant
24
55
SSSE3 optimization.
25
56
26
- Bug gixes :
57
+ Bug fixes :
27
58
28
59
* [ BUG #455 ] ( https://github.com/rust-lang/regex/pull/455 ) :
29
60
Fix a bug where ` (?x)[ / - ] ` failed to parse.
0 commit comments