release: ignore-files v1.2.0 (#534)

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] 2023-03-19 01:08:22 +13:00 committed by GitHub
parent d8f997e104
commit 26679721aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 14 additions and 7 deletions

2
Cargo.lock generated
View File

@ -1880,7 +1880,7 @@ dependencies = [
[[package]]
name = "ignore-files"
version = "1.1.0"
version = "1.2.0"
dependencies = [
"futures",
"gix-config",

View File

@ -48,7 +48,7 @@ version = "4.1.8"
features = ["cargo", "derive", "env", "wrap_help"]
[dependencies.ignore-files]
version = "1.1.0"
version = "1.2.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.1.0"
version = "1.2.0"
path = "../../ignore-files"
[dependencies.watchexec]

View File

@ -20,7 +20,7 @@ ignore = "0.4.18"
tracing = "0.1.26"
[dependencies.ignore-files]
version = "1.1.0"
version = "1.2.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.1.0"
version = "1.2.0"
path = "../../ignore-files"
[dependencies.tokio]

View File

@ -2,6 +2,13 @@
## Next (YYYY-MM-DD)
## v1.2.0 (2023-03-18)
- Deps: update git-config to gix-config.
- Deps: update tokio to 1.24
- Ditch MSRV policy (only latest supported now).
- `from_environment()` no longer looks at `WATCHEXEC_IGNORE_FILES`.
## v1.1.0 (2023-01-08)
- Add missing `Send` bound to async functions.

View File

@ -1,6 +1,6 @@
[package]
name = "ignore-files"
version = "1.1.0"
version = "1.2.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.1.0"
version = "1.2.0"
path = "../ignore-files"
[dependencies.notify]