release: ignore-files v2.1.0 (#762)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
github-actions[bot] 2024-01-04 11:32:58 +00:00 committed by GitHub
parent 4f757de8df
commit 6a2f637a60
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

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

View File

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

View File

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

View File

@ -22,7 +22,7 @@ normalize-path = "0.2.1"
tracing = "0.1.40"
[dependencies.ignore-files]
version = "2.0.0"
version = "2.1.0"
path = "../../ignore-files"
[dependencies.watchexec]

View File

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

View File

@ -2,6 +2,8 @@
## Next (YYYY-MM-DD)
## v2.1.0 (2024-01-04)
- Normalise paths on all platforms (via `normalize-path`).
- Require paths be normalised before discovery.
- Add convenience APIs to `IgnoreFilesFromOriginArgs` for that purpose.

View File

@ -1,6 +1,6 @@
[package]
name = "ignore-files"
version = "2.0.0"
version = "2.1.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 = "2.0.0"
version = "2.1.0"
path = "../ignore-files"
[dependencies.project-origins]