From d168ed9676d1fd59314fb6b6447bd021be3425ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Sep 2022 03:50:18 +0000 Subject: [PATCH] release: ignore-files v1.0.1 (#407) 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 | 5 +++++ crates/ignore-files/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- 8 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 97ecfed..891f071 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1111,7 +1111,7 @@ dependencies = [ [[package]] name = "ignore-files" -version = "1.0.0" +version = "1.0.1" dependencies = [ "dunce", "futures", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 672ce24..da3490b 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -33,7 +33,7 @@ version = "3.1.18" features = ["cargo", "wrap_help"] [dependencies.ignore-files] -version = "1.0.0" +version = "1.0.1" path = "../ignore-files" [dependencies.project-origins] diff --git a/crates/filterer/globset/Cargo.toml b/crates/filterer/globset/Cargo.toml index ee8be08..6449fc3 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.0.0" +version = "1.0.1" path = "../../ignore-files" [dependencies.watchexec] diff --git a/crates/filterer/ignore/Cargo.toml b/crates/filterer/ignore/Cargo.toml index 38084ae..153a778 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.0.0" +version = "1.0.1" path = "../../ignore-files" [dependencies.watchexec] diff --git a/crates/filterer/tagged/Cargo.toml b/crates/filterer/tagged/Cargo.toml index e4641ad..778eb48 100644 --- a/crates/filterer/tagged/Cargo.toml +++ b/crates/filterer/tagged/Cargo.toml @@ -27,7 +27,7 @@ regex = "1.5.4" unicase = "2.6.0" [dependencies.ignore-files] -version = "1.0.0" +version = "1.0.1" path = "../../ignore-files" [dependencies.tokio] diff --git a/crates/ignore-files/CHANGELOG.md b/crates/ignore-files/CHANGELOG.md index b96e8ec..9c55998 100644 --- a/crates/ignore-files/CHANGELOG.md +++ b/crates/ignore-files/CHANGELOG.md @@ -2,6 +2,11 @@ ## Next (YYYY-MM-DD) +## v1.0.1 (2022-09-07) + +- Deps: update git-config to 0.7.1 +- Deps: update miette to 5.3.0 + ## v1.0.0 (2022-06-16) - Initial release as a separate crate. diff --git a/crates/ignore-files/Cargo.toml b/crates/ignore-files/Cargo.toml index c8cf6e7..2a1f516 100644 --- a/crates/ignore-files/Cargo.toml +++ b/crates/ignore-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ignore-files" -version = "1.0.0" +version = "1.0.1" authors = ["Félix Saparelli "] license = "Apache-2.0" diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index a07bfcc..481085e 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -31,7 +31,7 @@ version = "1.0.8" features = ["with-tokio"] [dependencies.ignore-files] -version = "1.0.0" +version = "1.0.1" path = "../ignore-files" [dependencies.notify]