Skip to content

Commit 4c10c47

Browse files
committed
changelog 0.2.11
1 parent 2c7ae83 commit 4c10c47

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
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+
132
0.2.10 (2018-03-16)
233
===================
334
This 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

Comments
 (0)