Notable additions:
- Support regular expression capturing groups 🎉
- Refer to any group with its index, e.g.
$1
or${1}
- Refer to named groups (
/(?P<name>.)/
) with$name
or${name}
- Insert a
$
with$$
- For more on this syntax, read the
regex
crate's documentation
- Refer to any group with its index, e.g.
- When files are detected as having
ascii
encoding, default toutf8
since it'sascii
compatible and more widely used
Due to another CI issue (my bad) 0.14.0
was released prematurely.
For all intents and purposes though, the binaries should be the same (was just changing some formatting and CI checks).