release: watchexec-filterer-ignore v3.0.0 (#751)

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 08:47:32 +00:00 committed by GitHub
parent 1ef2fcebf1
commit 48793008eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 4 deletions

2
Cargo.lock generated
View File

@ -4082,7 +4082,7 @@ dependencies = [
[[package]]
name = "watchexec-filterer-ignore"
version = "2.0.1"
version = "3.0.0"
dependencies = [
"dunce",
"ignore",

View File

@ -32,7 +32,7 @@ version = "2.0.1"
path = "../../events"
[dependencies.watchexec-filterer-ignore]
version = "2.0.1"
version = "3.0.0"
path = "../ignore"
[dev-dependencies]

View File

@ -2,6 +2,10 @@
## Next (YYYY-MM-DD)
## v3.0.0 (2024-01-01)
- Deps: `ignore-files` 2.0.0
## v2.0.1 (2023-12-09)
- Depend on `watchexec-events` instead of the `watchexec` re-export.

View File

@ -1,6 +1,6 @@
[package]
name = "watchexec-filterer-ignore"
version = "2.0.1"
version = "3.0.0"
authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"

View File

@ -48,7 +48,7 @@ version = "2.0.1"
path = "../../events"
[dependencies.watchexec-filterer-ignore]
version = "2.0.0"
version = "3.0.0"
path = "../ignore"
[dependencies.watchexec-signals]

View File

@ -178,6 +178,11 @@ pub enum RuntimeError {
/// Error received from the [`ignore-files`](ignore_files) crate.
#[error("ignore files: {0}")]
#[deprecated(
since = "3.0.2",
note = "ignore-files is no longer part of Watchexec directly"
)]
// on removal, delete the dependency too
IgnoreFiles(
#[diagnostic_source]
#[from]