From 26679721aa0cb4fabb45c61b4a5b8b712e8211cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Mar 2023 01:08:22 +1300 Subject: [PATCH] release: ignore-files v1.2.0 (#534) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions Co-authored-by: Félix Saparelli --- Cargo.lock | 2 +- crates/cli/Cargo.toml | 2 +- crates/filterer/globset/Cargo.toml | 2 +- crates/filterer/ignore/Cargo.toml | 2 +- crates/filterer/tagged/Cargo.toml | 2 +- crates/ignore-files/CHANGELOG.md | 7 +++++++ crates/ignore-files/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- 8 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 24581f3..64f36e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1880,7 +1880,7 @@ dependencies = [ [[package]] name = "ignore-files" -version = "1.1.0" +version = "1.2.0" dependencies = [ "futures", "gix-config", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 4de5175..5fa12af 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -48,7 +48,7 @@ version = "4.1.8" features = ["cargo", "derive", "env", "wrap_help"] [dependencies.ignore-files] -version = "1.1.0" +version = "1.2.0" path = "../ignore-files" [dependencies.miette] diff --git a/crates/filterer/globset/Cargo.toml b/crates/filterer/globset/Cargo.toml index efe28ff..48345c9 100644 --- a/crates/filterer/globset/Cargo.toml +++ b/crates/filterer/globset/Cargo.toml @@ -20,7 +20,7 @@ ignore = "0.4.18" tracing = "0.1.26" [dependencies.ignore-files] -version = "1.1.0" +version = "1.2.0" path = "../../ignore-files" [dependencies.watchexec] diff --git a/crates/filterer/ignore/Cargo.toml b/crates/filterer/ignore/Cargo.toml index f21f3d7..309a34c 100644 --- a/crates/filterer/ignore/Cargo.toml +++ b/crates/filterer/ignore/Cargo.toml @@ -20,7 +20,7 @@ ignore = "0.4.18" tracing = "0.1.26" [dependencies.ignore-files] -version = "1.1.0" +version = "1.2.0" path = "../../ignore-files" [dependencies.watchexec] diff --git a/crates/filterer/tagged/Cargo.toml b/crates/filterer/tagged/Cargo.toml index e3f1642..e69e8f2 100644 --- a/crates/filterer/tagged/Cargo.toml +++ b/crates/filterer/tagged/Cargo.toml @@ -27,7 +27,7 @@ tracing = "0.1.26" unicase = "2.6.0" [dependencies.ignore-files] -version = "1.1.0" +version = "1.2.0" path = "../../ignore-files" [dependencies.tokio] diff --git a/crates/ignore-files/CHANGELOG.md b/crates/ignore-files/CHANGELOG.md index e372909..1a291df 100644 --- a/crates/ignore-files/CHANGELOG.md +++ b/crates/ignore-files/CHANGELOG.md @@ -2,6 +2,13 @@ ## Next (YYYY-MM-DD) +## v1.2.0 (2023-03-18) + +- Deps: update git-config to gix-config. +- Deps: update tokio to 1.24 +- Ditch MSRV policy (only latest supported now). +- `from_environment()` no longer looks at `WATCHEXEC_IGNORE_FILES`. + ## v1.1.0 (2023-01-08) - Add missing `Send` bound to async functions. diff --git a/crates/ignore-files/Cargo.toml b/crates/ignore-files/Cargo.toml index 50e0ecd..efdc951 100644 --- a/crates/ignore-files/Cargo.toml +++ b/crates/ignore-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ignore-files" -version = "1.1.0" +version = "1.2.0" authors = ["Félix Saparelli "] license = "Apache-2.0" diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 397844c..50c8b13 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -39,7 +39,7 @@ version = "1.0.0" path = "../signals" [dependencies.ignore-files] -version = "1.1.0" +version = "1.2.0" path = "../ignore-files" [dependencies.notify]