diff --git a/CHANGELOG.md b/CHANGELOG.md index 90804115..36f03717 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -### next +### v1.42.0 - 2024-08-18 + - support of `.ignore` files with the same syntax than `.gitignore`. They have priority over `.gitignore` so that a personal `.ignore` file can override a shared `.gitignore` - See https://dystroy.org/broot/tree_view/#hidden-ignored-files - Fix #613 - `:toggle_ignore` internal, identical to `:toggle_git_ignore`, but with a clearer name so should be preferred +- the `panels` verb filter now works in most contexts (it was previously only checked on key events) - many dependencies updated ### v1.41.1 - 2024-08-04 diff --git a/Cargo.lock b/Cargo.lock index aebb7743..8d39888f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -216,7 +216,7 @@ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" [[package]] name = "broot" -version = "1.41.2-dev" +version = "1.42.0" dependencies = [ "ansi_colours", "base64 0.21.7", diff --git a/Cargo.toml b/Cargo.toml index 81b2c04b..e65dd8b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "broot" -version = "1.41.2-dev" +version = "1.42.0" authors = ["dystroy "] repository = "https://github.com/Canop/broot" homepage = "https://dystroy.org/broot"