release: ignore-files v1.3.0 (#588)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
github-actions[bot] 2023-05-14 09:31:05 +00:00 committed by GitHub
parent 0b50c91a1c
commit 7c1c726d85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 7 deletions

2
Cargo.lock generated
View File

@ -1911,7 +1911,7 @@ dependencies = [
[[package]]
name = "ignore-files"
version = "1.2.0"
version = "1.3.0"
dependencies = [
"dunce",
"futures",

View File

@ -48,7 +48,7 @@ version = "4.1.8"
features = ["cargo", "derive", "env", "wrap_help"]
[dependencies.ignore-files]
version = "1.2.0"
version = "1.3.0"
path = "../ignore-files"
[dependencies.miette]

View File

@ -20,7 +20,7 @@ ignore = "0.4.18"
tracing = "0.1.26"
[dependencies.ignore-files]
version = "1.2.0"
version = "1.3.0"
path = "../../ignore-files"
[dependencies.watchexec]

View File

@ -21,7 +21,7 @@ tracing = "0.1.26"
dunce = "1.0.4"
[dependencies.ignore-files]
version = "1.2.0"
version = "1.3.0"
path = "../../ignore-files"
[dependencies.watchexec]

View File

@ -27,7 +27,7 @@ tracing = "0.1.26"
unicase = "2.6.0"
[dependencies.ignore-files]
version = "1.2.0"
version = "1.3.0"
path = "../../ignore-files"
[dependencies.tokio]

View File

@ -2,6 +2,8 @@
## Next (YYYY-MM-DD)
## v1.3.0 (2023-05-14)
- Use IO-free dunce::simplify to normalise paths on Windows.
- Handle gitignores correctly (one GitIgnoreBuilder per path).
- Deps: update gix-config to 0.22.

View File

@ -1,6 +1,6 @@
[package]
name = "ignore-files"
version = "1.2.0"
version = "1.3.0"
authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"

View File

@ -39,7 +39,7 @@ version = "1.0.0"
path = "../signals"
[dependencies.ignore-files]
version = "1.2.0"
version = "1.3.0"
path = "../ignore-files"
[dependencies.notify]