Skip to content

Commit

Permalink
changelog: tweaks to 1.8 release entry
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Apr 20, 2023
1 parent 33898de commit 7cd75d2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ New features:

* [FEATURE #501](https://github.com/rust-lang/regex/issues/501):
Permit many more characters to be escaped, even if they have no significance.
More specifically, any character except for `[0-9A-Za-z<>]` can now be
More specifically, any ASCII character except for `[0-9A-Za-z<>]` can now be
escaped. Also, a new routine, `is_escapeable_character`, has been added to
`regex-syntax` to query whether a character is escapeable or not.
* [FEATURE #547](https://github.com/rust-lang/regex/issues/547):
Expand Down Expand Up @@ -74,6 +74,11 @@ to `utf8`, and the meaning of the boolean has been flipped.

Performance improvements:

* PERF: The upgrade to `aho-corasick 1.0` may improve performance in some
cases. It's difficult to characterize exactly which patterns this might impact,
but if there are a small number of longish (>= 4 bytes) prefix literals, then
it might be faster than before.

Bug fixes:

* [BUG #514](https://github.com/rust-lang/regex/issues/514):
Expand Down

0 comments on commit 7cd75d2

Please sign in to comment.