File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ New features:
3636
3737* [ FEATURE #501 ] ( https://github.com/rust-lang/regex/issues/501 ) :
3838Permit many more characters to be escaped, even if they have no significance.
39- More specifically, any character except for ` [0-9A-Za-z<>] ` can now be
39+ More specifically, any ASCII character except for ` [0-9A-Za-z<>] ` can now be
4040escaped. Also, a new routine, ` is_escapeable_character ` , has been added to
4141` regex-syntax ` to query whether a character is escapeable or not.
4242* [ FEATURE #547 ] ( https://github.com/rust-lang/regex/issues/547 ) :
@@ -74,6 +74,11 @@ to `utf8`, and the meaning of the boolean has been flipped.
7474
7575Performance improvements:
7676
77+ * PERF: The upgrade to ` aho-corasick 1.0 ` may improve performance in some
78+ cases. It's difficult to characterize exactly which patterns this might impact,
79+ but if there are a small number of longish (>= 4 bytes) prefix literals, then
80+ it might be faster than before.
81+
7782Bug fixes:
7883
7984* [ BUG #514 ] ( https://github.com/rust-lang/regex/issues/514 ) :
You can’t perform that action at this time.
0 commit comments