v10.4.0
Added 1
- Add `--ignore-contain` option to ignore directories containing a named entry
Changed 2
- Minimum required rust version has been increased to 1.90.0
- Statically link the CRT for MSVC builds via Cargo config to avoid runtime DLL dependencies
Fixed 3
- Fix Windows hyperlink generation for paths with spaces
- `--print0` combined with `--exec` will now print a `\0` between the output of each entry
- Fix bugs in the `ignore` library used for handling ignore rules
Features
- Add
--ignore-containoption to ignore directories containing a named entry (e.g. to ignoreCACHEDIR.TAG); see #1727 (@fischman).
Bugfixes
-
Fix Windows hyperlink generation for paths with spaces. (#1872)
-
--print0combined with--execwill now print a\0between the output of each entry. Note that if there are multiple instances of--exec, the\0will be between each set of commands, not between each individual command run. Fixes #1797. -
Several bugs were fixed by an update to the
ignorelibrary used for handling ignore rules- #1506
- #1667
- #1813
Changes
- Minimum required rust version has been increased to 1.90.0. Notably, this means dropping fully support for intel Mac and Windows 7.
- Statically link the CRT for MSVC builds via Cargo config to avoid runtime DLL dependencies, see #1874 (@FidelSch)