Skip to content

Commit 04473de

Browse files
authored
chore: Prepare 8.1.0 release (#697)
1 parent 12a026d commit 04473de

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Changelog
22

3-
## notify 9.0.0 (unreleased)
3+
## notify 8.1.0 (2025-07-03)
44
- FEATURE: added support for the [`flume`](https://docs.rs/flume) crate
55
- FIX: kqueue-backend: do not double unwatch top-level directory when recursively unwatching [#683]
6-
- FIX: Return the crate error `PathNotFound` instead bubbling up the std::io error [#685] **breaking**
6+
- FIX: Return the crate error `PathNotFound` instead bubbling up the std::io error [#685]
77
- FIX: fix server hangs when trashing folders on Windows [#674]
88

99
## debouncer-full 0.6.0 (unreleased)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ 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.0.0", path = "notify" }
38+
notify = { version = "8.1.0", path = "notify" }
3939
notify-debouncer-full = { version = "0.5.0", path = "notify-debouncer-full" }
4040
notify-debouncer-mini = { version = "0.6.0", path = "notify-debouncer-mini" }
4141
notify-types = { version = "2.0.0", path = "notify-types" }

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.0.0"
3+
version = "8.1.0"
44
description = "Cross-platform filesystem notification library"
55
documentation = "https://docs.rs/notify"
66
readme = "../README.md"

notify/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! ```toml
66
//! [dependencies]
7-
//! notify = "8.0.0"
7+
//! notify = "8.1.0"
88
//! ```
99
//!
1010
//! If you want debounced events (or don't need them in-order), see [notify-debouncer-mini](https://docs.rs/notify-debouncer-mini/latest/notify_debouncer_mini/)
@@ -24,7 +24,7 @@
2424
//! Events are serializable via [serde](https://serde.rs) if the `serde` feature is enabled:
2525
//!
2626
//! ```toml
27-
//! notify = { version = "8.0.0", features = ["serde"] }
27+
//! notify = { version = "8.1.0", features = ["serde"] }
2828
//! ```
2929
//!
3030
//! # Known Problems

0 commit comments

Comments
 (0)