Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 2.25 KB

CHANGELOG.md

File metadata and controls

65 lines (44 loc) · 2.25 KB

Changelog

All notable changes to this project will be documented in this file.

[2.4.0]

🚀 Features

  • Add --select and --multiselect options for an interactive file select screen.
    • Useful for chaining hunt with other commands.
  • Remove implicit ignore list, as it affected performance globally for a very small gain in specific queries.
  • More optimized substring search with memchr.

[2.3.0]

🚀 Features

  • Multiple small optimizations for up to 25% performance improvement
    • Parallelism is now at directory level instead of file level

[2.2.0]

🚀 Features

🐛 Bug Fixes

[2.1.0]

🚀 Features

  • Changed sort_unstable to sort for up to 20% performance improvement
  • Re-added color to --help output

🐛 Bug Fixes

  • Avoid allocation in case of case_sensitivity
  • Fixed canonicalization

[2.0.0]

Breaking changes

  • Updated to clap 4.3.0.
  • Changed case_sensitive flag from -c to -C.
  • Changed hidden flag from -h to -H.
  • help can now be triggered by -h and --help.
  • Added --canonicalize and -c flags
    • hunt's output will now depend on the paths in SEARCH_IN_DIRS.
      Only queries starting with / will be canonicallized.
    • Addresses #2.
  • The -ss flag now prints the results incrementally, as no sorting is needed.
    • The "File not found" message will only be shown when no -s flag is provided.
    • Addresses #4.

Other changes

  • Fixed README examples to account for the flag changes.
  • Updated multiple dependencies