Skip to content

Commit a1d7c2d

Browse files
authored
Prepare release (#706)
1 parent c685ea7 commit a1d7c2d

File tree

6 files changed

+26
-24
lines changed

6 files changed

+26
-24
lines changed

CHANGELOG.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
11
# Changelog
22

3-
## notify 8.2.0 (unreleased)
4-
- FEATURE: notify a user if the `max_user_watches` has been reached implicitly (`INotifyWatcher`) [#698]
5-
- FIX: `INotifyWatcher` ignores events with unknown watch descriptors (instead of `EventMask::Q_OVERFLOW`) [#700]
3+
## notify 8.2.0 (2025-08-03)
4+
- FEATURE: notify user if inotify's `max_user_watches` has been reached [#698]
5+
- FIX: `INotifyWatcher` ignore events with unknown watch descriptors (instead of `EventMask::Q_OVERFLOW`) [#700]
66

77
[#698]: https://github.com/notify-rs/notify/pull/698
88
[#700]: https://github.com/notify-rs/notify/pull/700
99

10-
## notify 8.1.0 (2025-07-03)
11-
- FEATURE: added support for the [`flume`](https://docs.rs/flume) crate
12-
- FIX: kqueue-backend: do not double unwatch top-level directory when recursively unwatching [#683]
13-
- FIX: Return the crate error `PathNotFound` instead bubbling up the std::io error [#685]
14-
- FIX: fix server hangs when trashing folders on Windows [#674]
15-
16-
## debouncer-full 0.6.0 (unreleased)
17-
- FEATURE: allow `FileIdCache` trait implementations to choose ownership of the returned file-ids
18-
- FEATURE: added support for the [`flume`](https://docs.rs/flume) crate
10+
## debouncer-full 0.6.0 (2025-08-03)
11+
- FEATURE: allow `FileIdCache` trait implementations to choose ownership of the returned file-ids [#664]
12+
- FEATURE: added support for the [`flume`](https://docs.rs/flume) crate [#680]
1913
- FIX: skip all `Modify` events right after a `Create` event, unless it's a rename event [#701]
2014

15+
[#664]: https://github.com/notify-rs/notify/pull/664
16+
[#680]: https://github.com/notify-rs/notify/pull/680
2117
[#701]: https://github.com/notify-rs/notify/pull/701
2218

23-
## debouncer-mini 0.7.0 (unreleased)
24-
- FEATURE: added support for the [`flume`](https://docs.rs/flume) crate
19+
## debouncer-mini 0.7.0 (2025-08-03)
20+
- FEATURE: added support for the [`flume`](https://docs.rs/flume) crate [#680]
21+
22+
## file-id 0.2.3 (2025-08-03)
23+
- CHANGE: implement `AsRef<FileId>` for `FileId` [#664]
2524

26-
## file-id 0.2.3 (unreleased)
27-
- CHANGE: implement `AsRef<FileId>` for `FileId`
25+
## notify 8.1.0 (2025-07-03)
26+
- FEATURE: added support for the [`flume`](https://docs.rs/flume) crate
27+
- FIX: kqueue-backend: do not double unwatch top-level directory when recursively unwatching [#683]
28+
- FIX: Return the crate error `PathNotFound` instead bubbling up the std::io error [#685]
29+
- FIX: fix server hangs when trashing folders on Windows [#674]
2830

2931
## notify 8.0.0 (2025-01-10)
3032

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ crossbeam-channel = "0.5.0"
2424
flume = "0.11.1"
2525
deser-hjson = "2.2.4"
2626
env_logger = "0.11.2"
27-
file-id = { version = "0.2.2", path = "file-id" }
27+
file-id = { version = "0.2.3", path = "file-id" }
2828
fsevent-sys = "4.0.0"
2929
futures = "0.3.30"
3030
inotify = { version = "0.11.0", default-features = false }
@@ -35,9 +35,9 @@ log = "0.4.17"
3535
mio = { version = "1.0", features = ["os-ext"] }
3636
web-time = "1.1.0"
3737
nix = "0.29.0"
38-
notify = { version = "8.1.0", path = "notify" }
39-
notify-debouncer-full = { version = "0.5.0", path = "notify-debouncer-full" }
40-
notify-debouncer-mini = { version = "0.6.0", path = "notify-debouncer-mini" }
38+
notify = { version = "8.2.0", path = "notify" }
39+
notify-debouncer-full = { version = "0.6.0", path = "notify-debouncer-full" }
40+
notify-debouncer-mini = { version = "0.7.0", path = "notify-debouncer-mini" }
4141
notify-types = { version = "2.0.0", path = "notify-types" }
4242
pretty_assertions = "1.3.0"
4343
rand = "0.8.5"

file-id/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "file-id"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "Utility for reading inode numbers (Linux, MacOS) and file IDs (Windows)"
55
documentation = "https://docs.rs/notify"
66
readme = "README.md"

notify-debouncer-full/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notify-debouncer-full"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "notify event debouncer optimized for ease of use"
55
documentation = "https://docs.rs/notify-debouncer-full"
66
authors = ["Daniel Faust <[email protected]>"]

notify-debouncer-mini/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notify-debouncer-mini"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "notify mini debouncer for events"
55
documentation = "https://docs.rs/notify-debouncer-mini"
66
authors = ["Aron Heinecke <[email protected]>"]

notify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notify"
3-
version = "8.1.0"
3+
version = "8.2.0"
44
description = "Cross-platform filesystem notification library"
55
documentation = "https://docs.rs/notify"
66
readme = "../README.md"

0 commit comments

Comments
 (0)