diff --git a/CHANGELOG.md b/CHANGELOG.md index aaf6a1ea..0c476894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,13 @@ v5 maintenance branch is on `v5_maintenance` after `5.2.0` v4 commits split out to branch `v4_maintenance` starting with `4.0.16` -## file-id 0.2.2 (unreleased) +## file-id 0.2.2 (2024-10-25) - CHANGE: get file stats without read permission [#625] [#625]: https://github.com/notify-rs/notify/issues/625 -## notify 7.0.0 (unreleased) +## notify 7.0.0 (2024-10-25) - CHANGE: raise MSRV to 1.72 [#569] [#610] **breaking** - CHANGE: move event type to notify-types crate [#559] @@ -23,6 +23,7 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16` - CHANGE: add log statements [#499] - FIX: prevent UB with illegal instruction for the windows backend [#604] [#607] - FIX: on Linux report deleted directories correctly [#545] +- FIX: on Linux report access open events [#612] - FEATURE: enable kqueue on iOS [#533] - MISC: various minor doc updates and fixes [#535] [#536] [#543] [#565] [#592] [#595] - MISC: update inotify to 0.10 [#547] @@ -39,12 +40,14 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16` [#565]: https://github.com/notify-rs/notify/pull/565 [#569]: https://github.com/notify-rs/notify/pull/569 [#592]: https://github.com/notify-rs/notify/pull/592 +[#595]: https://github.com/notify-rs/notify/pull/595 [#604]: https://github.com/notify-rs/notify/pull/604 [#607]: https://github.com/notify-rs/notify/pull/607 [#610]: https://github.com/notify-rs/notify/pull/610 +[#612]: https://github.com/notify-rs/notify/pull/612 [#623]: https://github.com/notify-rs/notify/pull/623 -## notify-types 1.0.0 (unreleased) +## notify-types 1.0.0 (2024-10-25) New crate containing public type definitions for the notify and debouncer crates. [#559] @@ -57,8 +60,13 @@ New crate containing public type definitions for the notify and debouncer crates [#568]: https://github.com/notify-rs/notify/pull/568 [#570]: https://github.com/notify-rs/notify/pull/570 -## debouncer-full 0.4.0 (unreleased) +## debouncer-mini 0.5.0 (2024-10-25) +- CHANGE: update notify to version 7.0.0 + +## debouncer-full 0.4.0 (2024-10-25) + +- CHANGE: update notify to version 7.0.0 - CHANGE: manage root folder paths for the file ID cache automatically [#557] **breaking** ```rust diff --git a/Cargo.toml b/Cargo.toml index 9a5f48d0..627ad814 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ bitflags = "2.3.0" crossbeam-channel = "0.5.0" deser-hjson = "2.2.4" env_logger = "0.11.2" -file-id = { path = "file-id" } +file-id = { version = "0.2.2", path = "file-id" } filetime = "0.2.22" fsevent-sys = "4.0.0" futures = "0.3.30" @@ -35,10 +35,10 @@ log = "0.4.17" mio = { version = "1.0", features = ["os-ext"] } instant = "0.1.12" nix = "0.27.0" -notify = { path = "notify" } -notify-debouncer-full = { path = "notify-debouncer-full" } -notify-debouncer-mini = { path = "notify-debouncer-mini" } -notify-types = { path = "notify-types" } +notify = { version = "7.0.0", path = "notify" } +notify-debouncer-full = { version = "0.4.0", path = "notify-debouncer-full" } +notify-debouncer-mini = { version = "0.5.0", path = "notify-debouncer-mini" } +notify-types = { version = "1.0.0", path = "notify-types" } pretty_assertions = "1.3.0" rand = "0.8.5" rstest = "0.21.0" diff --git a/file-id/Cargo.toml b/file-id/Cargo.toml index 15d719e2..fa615f63 100644 --- a/file-id/Cargo.toml +++ b/file-id/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "file-id" -version = "0.2.1" +version = "0.2.2" description = "Utility for reading inode numbers (Linux, MacOS) and file IDs (Windows)" documentation = "https://docs.rs/notify" readme = "README.md" diff --git a/notify-debouncer-mini/Cargo.toml b/notify-debouncer-mini/Cargo.toml index e1f70788..444d842a 100644 --- a/notify-debouncer-mini/Cargo.toml +++ b/notify-debouncer-mini/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notify-debouncer-mini" -version = "0.4.1" +version = "0.5.0" description = "notify mini debouncer for events" documentation = "https://docs.rs/notify-debouncer-mini" authors = ["Aron Heinecke "] diff --git a/notify/Cargo.toml b/notify/Cargo.toml index 42a32406..85979b75 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notify" -version = "6.1.1" +version = "7.0.0" description = "Cross-platform filesystem notification library" documentation = "https://docs.rs/notify" readme = "../README.md"