File tree Expand file tree Collapse file tree 7 files changed +19
-8
lines changed Expand file tree Collapse file tree 7 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
v4 commits split out to branch ` v4_maintenance ` starting with ` 4.0.16 `
4
4
5
+ ## notify 5.1.0 (2023-01-15)
6
+
7
+ - CHANGE: switch from winapi to windows-sys [ #457 ]
8
+ - FIX: kqueue-backend: batch file-watching together to improve performance [ #454 ]
9
+ - DOCS: include license file in crate again [ #461 ]
10
+ - DOCS: typo and examples fixups
11
+
12
+ [ #454 ] : https://github.com/notify-rs/notify/pull/454
13
+ [ #461 ] : https://github.com/notify-rs/notify/pull/461
14
+ [ #457 ] : https://github.com/notify-rs/notify/pull/457
15
+
5
16
## debouncer-mini 0.2.1 (2022-09-05)
6
17
7
18
- DOCS: correctly document the ` crossbeam ` feature [ #440 ]
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ Originally created by [Félix Saparelli] and awesome [contributors].
76
76
[ contributors ] : https://github.com/notify-rs/notify/graphs/contributors
77
77
[ crate ] : https://crates.io/crates/notify
78
78
[ docket ] : https://iwillspeak.github.io/docket/
79
- [ docs ] : https://docs.rs/notify/5.0 .0/notify/
79
+ [ docs ] : https://docs.rs/notify/5.1 .0/notify/
80
80
[ fsnotify ] : https://github.com/go-fsnotify/fsnotify
81
81
[ handlebars-iron ] : https://github.com/sunng87/handlebars-iron
82
82
[ hotwatch ] : https://github.com/francesca64/hotwatch
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ publish = false
5
5
edition = " 2021"
6
6
7
7
[dev-dependencies ]
8
- notify = { version = " 5.0 .0" }
8
+ notify = { version = " 5.1 .0" }
9
9
notify-debouncer-mini = { version = " 0.2.0" }
10
10
futures = " 0.3"
11
11
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ tide = "0.16.0"
11
11
async-std = { version = " 1.6.0" , features = [" attributes" ] }
12
12
serde_json = " 1.0"
13
13
serde = " 1.0.115"
14
- notify = { version = " 5.0 .0" , features = [" serde" ], path = " ../../notify" }
14
+ notify = { version = " 5.1 .0" , features = [" serde" ], path = " ../../notify" }
15
15
16
16
# required to prevent mixing with workspace
17
17
# hack to prevent cargo audit from catching this
Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ default = ["crossbeam"]
24
24
crossbeam = [" crossbeam-channel" ," notify/crossbeam-channel" ]
25
25
26
26
[dependencies ]
27
- notify = " 5.0 .0"
27
+ notify = " 5.1 .0"
28
28
crossbeam-channel = { version = " 0.5" , optional = true }
29
29
serde = { version = " 1.0.89" , features = [" derive" ], optional = true }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " notify"
3
- version = " 5.0 .0"
3
+ version = " 5.1 .0"
4
4
rust-version = " 1.56"
5
5
description = " Cross-platform filesystem notification library"
6
6
documentation = " https://docs.rs/notify"
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! ```toml
6
6
//! [dependencies]
7
- //! notify = "5.0 .0"
7
+ //! notify = "5.1 .0"
8
8
//! ```
9
9
//!
10
10
//! If you want debounced events, see [notify-debouncer-mini](https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini)
23
23
//! Events are serialisable via [serde](https://serde.rs) if the `serde` feature is enabled:
24
24
//!
25
25
//! ```toml
26
- //! notify = { version = "5.0 .0", features = ["serde"] }
26
+ //! notify = { version = "5.1 .0", features = ["serde"] }
27
27
//! ```
28
28
//!
29
29
//! ### Crossbeam-Channel & Tokio
34
34
//! You can disable crossbeam-channel, letting notify fallback to std channels via
35
35
//!
36
36
//! ```toml
37
- //! notify = { version = "5.0 .0", default-features = false, features = ["macos_kqueue"] }
37
+ //! notify = { version = "5.1 .0", default-features = false, features = ["macos_kqueue"] }
38
38
//! // Alternatively macos_fsevent instead of macos_kqueue
39
39
//! ```
40
40
//! Note the `macos_kqueue` requirement here, otherwise no backend is available on macos.
You can’t perform that action at this time.
0 commit comments