regex v1.1.3 Release Notes

Release Date: 2019-03-30 // about 5 years ago
  • ๐Ÿš€ This releases fixes a few bugs and adds a performance improvement when a regex is a simple alternation of literals.

    ๐ŸŽ Performance improvements:

    • OPT #566: Upgrades aho-corasick to 0.7 and uses it for foo|bar|...|quux regexes.

    ๐Ÿ› Bug fixes:

    • BUG #527: Fix a bug where the parser would panic on patterns like ((?x)).
    • BUG #555: Fix a bug where the parser would panic on patterns like (?m){1,1}.
    • BUG #557: Fix a bug where captures could lead to an incorrect match.