From 33f5ba5ef9bcad2ed31a8461336d6a3790c60d5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Jan 2023 17:12:08 +0000 Subject: [PATCH] release: ignore-files v1.1.0 (#471) 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 | 4 +++- crates/ignore-files/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df4e810..f2dcbc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "ignore-files" -version = "1.0.1" +version = "1.1.0" dependencies = [ "futures", "git-config", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 17df31f..9f198e7 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -32,7 +32,7 @@ version = "3.1.18" features = ["cargo", "wrap_help"] [dependencies.ignore-files] -version = "1.0.1" +version = "1.1.0" path = "../ignore-files" [dependencies.project-origins] diff --git a/crates/filterer/globset/Cargo.toml b/crates/filterer/globset/Cargo.toml index c22d872..eca4e6a 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.1" +version = "1.1.0" path = "../../ignore-files" [dependencies.watchexec] diff --git a/crates/filterer/ignore/Cargo.toml b/crates/filterer/ignore/Cargo.toml index 8c7da9a..c54d3d8 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.1" +version = "1.1.0" path = "../../ignore-files" [dependencies.watchexec] diff --git a/crates/filterer/tagged/Cargo.toml b/crates/filterer/tagged/Cargo.toml index 87f0cbd..a471424 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.0.1" +version = "1.1.0" path = "../../ignore-files" [dependencies.tokio] diff --git a/crates/ignore-files/CHANGELOG.md b/crates/ignore-files/CHANGELOG.md index bcb1cae..e372909 100644 --- a/crates/ignore-files/CHANGELOG.md +++ b/crates/ignore-files/CHANGELOG.md @@ -2,7 +2,9 @@ ## Next (YYYY-MM-DD) -- Add `Send` bound to async functions. +## v1.1.0 (2023-01-08) + +- Add missing `Send` bound to async functions. ## v1.0.1 (2022-09-07) diff --git a/crates/ignore-files/Cargo.toml b/crates/ignore-files/Cargo.toml index dc90443..8fd18fd 100644 --- a/crates/ignore-files/Cargo.toml +++ b/crates/ignore-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ignore-files" -version = "1.0.1" +version = "1.1.0" authors = ["Félix Saparelli "] license = "Apache-2.0" diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 6e5e028..bf343ac 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -31,7 +31,7 @@ version = "2.0.1" features = ["with-tokio"] [dependencies.ignore-files] -version = "1.0.1" +version = "1.1.0" path = "../ignore-files" [dependencies.notify]