diff --git a/Cargo.lock b/Cargo.lock index f721beba..221c1eda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4007,7 +4007,7 @@ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "watchexec" -version = "4.0.0" +version = "4.1.0" dependencies = [ "async-priority-channel", "async-recursion", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 65a86651..6702618c 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -85,7 +85,7 @@ version = "1.4.0" path = "../project-origins" [dependencies.watchexec] -version = "4.0.0" +version = "4.1.0" path = "../lib" [dependencies.watchexec-events] diff --git a/crates/filterer/globset/Cargo.toml b/crates/filterer/globset/Cargo.toml index 1b03ce04..d2ee72b6 100644 --- a/crates/filterer/globset/Cargo.toml +++ b/crates/filterer/globset/Cargo.toml @@ -24,7 +24,7 @@ version = "3.0.1" path = "../../ignore-files" [dependencies.watchexec] -version = "4.0.0" +version = "4.1.0" path = "../../lib" [dependencies.watchexec-events] diff --git a/crates/filterer/ignore/Cargo.toml b/crates/filterer/ignore/Cargo.toml index 2877b2f9..341ed179 100644 --- a/crates/filterer/ignore/Cargo.toml +++ b/crates/filterer/ignore/Cargo.toml @@ -26,7 +26,7 @@ version = "3.0.1" path = "../../ignore-files" [dependencies.watchexec] -version = "4.0.0" +version = "4.1.0" path = "../../lib" [dependencies.watchexec-events] diff --git a/crates/lib/CHANGELOG.md b/crates/lib/CHANGELOG.md index 7622a713..dffabbde 100644 --- a/crates/lib/CHANGELOG.md +++ b/crates/lib/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next (YYYY-MM-DD) +## v4.1.0 (2024-04-28) + - Feature: non-recursive watches with `WatchedPath::non_recursive()` - Fix: `config.pathset()` now preserves `WatchedPath` attributes - Refactor: move `WatchedPath` to the root of the crate (old path remains as re-export for now) diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index c8a3d193..61b94ca3 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "watchexec" -version = "4.0.0" +version = "4.1.0" authors = ["FĂ©lix Saparelli ", "Matt Green "] license = "Apache-2.0"