diff --git a/CHANGELOG.md b/CHANGELOG.md index e944769e2..a52d9942f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Upcoming release +# 10.4.0 ## Features - Add `--ignore-contain` option to ignore directories containing a named entry (e.g. to ignore [`CACHEDIR.TAG`](https://bford.info/cachedir/)); see #1727 (@fischman). diff --git a/Cargo.lock b/Cargo.lock index 813af7b9c..15a986615 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "fd-find" -version = "10.3.0" +version = "10.4.0" dependencies = [ "aho-corasick", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 219cc441a..558f0f344 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ license = "MIT OR Apache-2.0" name = "fd-find" readme = "README.md" repository = "https://github.com/sharkdp/fd" -version = "10.3.0" +version = "10.4.0" edition= "2024" rust-version = "1.90.0" diff --git a/README.md b/README.md index 408963e4d..d6353edf7 100644 --- a/README.md +++ b/README.md @@ -311,7 +311,7 @@ This is the output of `fd -h`. To see the full set of command-line options, use also includes a much more detailed help text. ``` -Usage: fd [OPTIONS] [pattern [path...]] +Usage: fd [OPTIONS] [pattern [path]...] Arguments: [pattern] the search pattern (a regular expression, unless '--glob' is used; optional) @@ -344,7 +344,7 @@ Options: always, never] --hyperlink[=] Add hyperlinks to output paths [default: never] [possible values: auto, always, never] - -C, --base-directory Change the search path to + --ignore-contain Ignore directories containing the named entry -h, --help Print help (see more with '--help') -V, --version Print version ```