release: ignore-files v2.0.0 (#750)

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Félix Saparelli <felix@passcod.name>
This commit is contained in:
github-actions[bot] 2024-01-01 07:54:19 +00:00 committed by GitHub
parent 8523bd196c
commit 1ef2fcebf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 12 additions and 7 deletions

2
Cargo.lock generated
View File

@ -1945,7 +1945,7 @@ dependencies = [
[[package]]
name = "ignore-files"
version = "1.3.2"
version = "2.0.0"
dependencies = [
"dunce",
"futures",

View File

@ -60,7 +60,7 @@ features = ["log", "env_logger"]
optional = true
[dependencies.ignore-files]
version = "1.3.2"
version = "2.0.0"
path = "../ignore-files"
[dependencies.miette]

View File

@ -20,7 +20,7 @@ ignore = "0.4.18"
tracing = "0.1.40"
[dependencies.ignore-files]
version = "1.3.2"
version = "2.0.0"
path = "../../ignore-files"
[dependencies.watchexec]

View File

@ -21,7 +21,7 @@ tracing = "0.1.40"
dunce = "1.0.4"
[dependencies.ignore-files]
version = "1.3.2"
version = "2.0.0"
path = "../../ignore-files"
[dependencies.watchexec]

View File

@ -30,7 +30,7 @@ tracing = "0.1.26"
unicase = "2.6.0"
[dependencies.ignore-files]
version = "1.3.2"
version = "2.0.0"
path = "../../ignore-files"
[dependencies.tokio]

View File

@ -2,6 +2,11 @@
## Next (YYYY-MM-DD)
## v2.0.0 (2024-01-01)
- A round of optimisation by @t3hmrman, improving directory traversal to avoid crawling unneeded paths ([#663](https://github.com/watchexec/watchexec/pull/663))
- Respect `applies_in` scope when processing nested ignores, by @thislooksfun ([#746](https://github.com/watchexec/watchexec/pull/746))
## v1.3.2 (2023-11-26)
- Remove error diagnostic codes.

View File

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

View File

@ -43,7 +43,7 @@ version = "1.0.3"
path = "../supervisor"
[dependencies.ignore-files]
version = "1.3.2"
version = "2.0.0"
path = "../ignore-files"
[dependencies.project-origins]