Changelog History
Page 4
-
v1.1.6 Changes
April 16, 2019๐ This release fixes a regression introduced by a bug fix (for BUG #557) which could cause the regex engine to enter an infinite loop. This bug was originally reported against ripgrep.
-
v1.1.5 Changes
April 01, 2019๐ This release fixes a bug in regex's dependency specification where it requires a newer version of regex-syntax, but this wasn't communicated correctly in the Cargo.toml. This would have been caught by a minimal version check, but this check was disabled because the
randcrate itself advertises incorrect dependency specifications.๐ Bug fixes:
- BUG #570: Fix regex-syntax minimal version.
-
v1.1.4 Changes
March 31, 2019๐ This release fixes a backwards compatibility regression where Regex was no โฌ๏ธ longer UnwindSafe. This was caused by the upgrade to aho-corasick 0.7, whose ๐ AhoCorasick type was itself not UnwindSafe. This has been fixed in aho-corasick 0.7.4, which we now require.
๐ Bug fixes:
- BUG #568: Fix an API regression where Regex was no longer UnwindSafe.
-
v1.1.3 Changes
March 30, 2019๐ 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-corasickto 0.7 and uses it forfoo|bar|...|quuxregexes.
๐ Bug fixes:
- OPT #566:
Upgrades
-
v1.1.2 Changes
February 27, 2019๐ This release fixes a bug found in the fix introduced in 1.1.1.
๐ Bug fixes:
- BUG edf45e6f: Fix bug introduced in reverse suffix literal matcher in the 1.1.1 release.
-
v1.1.1 Changes
February 27, 2019๐ This is a small release with one fix for a bug caused by literal optimizations.
๐ Bug fixes:
- BUG 661bf53d: Fixes a bug in the reverse suffix literal optimization. This was originally reported against ripgrep.
-
v1.1.0 Changes
November 30, 2018๐ This is a small release with a couple small enhancements. This release also ๐ increases the minimal supported Rust version (MSRV) to 1.24.1 (from 1.20.0). In ๐ accordance with this crate's MSRV policy, this release bumps the minor version number.
๐ Performance improvements:
๐ New features:
- FEATURE #538: Add Emoji and "break" Unicode properties. See [UNICODE.md](UNICODE.md).
๐ Bug fixes:
- BUG #530: Add Unicode license (for data tables).
- Various typo/doc fixups.
-
v1.0.6 Changes
November 06, 2018 -
v1.0.5 Changes
September 06, 2018๐ This is a small release with an API enhancement.
๐ New features:
- FEATURE #509:
Generalize impls of the
Replacertrait.
- FEATURE #509:
Generalize impls of the
-
v1.0.4 Changes
August 25, 2018๐ This is a small release that bumps the quickcheck dependency.