Skip to content

Commit 85a231f

Browse files
committed
prepare notify 5.1.0
1 parent d765321 commit 85a231f

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
v4 commits split out to branch `v4_maintenance` starting with `4.0.16`
44

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+
516
## debouncer-mini 0.2.1 (2022-09-05)
617

718
- DOCS: correctly document the `crossbeam` feature [#440]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Originally created by [Félix Saparelli] and awesome [contributors].
7676
[contributors]: https://github.com/notify-rs/notify/graphs/contributors
7777
[crate]: https://crates.io/crates/notify
7878
[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/
8080
[fsnotify]: https://github.com/go-fsnotify/fsnotify
8181
[handlebars-iron]: https://github.com/sunng87/handlebars-iron
8282
[hotwatch]: https://github.com/francesca64/hotwatch

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish = false
55
edition = "2021"
66

77
[dev-dependencies]
8-
notify = { version = "5.0.0" }
8+
notify = { version = "5.1.0" }
99
notify-debouncer-mini = { version = "0.2.0" }
1010
futures = "0.3"
1111

examples/hot_reload_tide/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tide = "0.16.0"
1111
async-std = { version = "1.6.0", features = ["attributes"] }
1212
serde_json = "1.0"
1313
serde = "1.0.115"
14-
notify = { version = "5.0.0", features = ["serde"], path = "../../notify" }
14+
notify = { version = "5.1.0", features = ["serde"], path = "../../notify" }
1515

1616
# required to prevent mixing with workspace
1717
# hack to prevent cargo audit from catching this

notify-debouncer-mini/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ default = ["crossbeam"]
2424
crossbeam = ["crossbeam-channel","notify/crossbeam-channel"]
2525

2626
[dependencies]
27-
notify = "5.0.0"
27+
notify = "5.1.0"
2828
crossbeam-channel = { version = "0.5", optional = true }
2929
serde = { version = "1.0.89", features = ["derive"], optional = true }

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 = "5.0.0"
3+
version = "5.1.0"
44
rust-version = "1.56"
55
description = "Cross-platform filesystem notification library"
66
documentation = "https://docs.rs/notify"

notify/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! ```toml
66
//! [dependencies]
7-
//! notify = "5.0.0"
7+
//! notify = "5.1.0"
88
//! ```
99
//!
1010
//! If you want debounced events, see [notify-debouncer-mini](https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini)
@@ -23,7 +23,7 @@
2323
//! Events are serialisable via [serde](https://serde.rs) if the `serde` feature is enabled:
2424
//!
2525
//! ```toml
26-
//! notify = { version = "5.0.0", features = ["serde"] }
26+
//! notify = { version = "5.1.0", features = ["serde"] }
2727
//! ```
2828
//!
2929
//! ### Crossbeam-Channel & Tokio
@@ -34,7 +34,7 @@
3434
//! You can disable crossbeam-channel, letting notify fallback to std channels via
3535
//!
3636
//! ```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"] }
3838
//! // Alternatively macos_fsevent instead of macos_kqueue
3939
//! ```
4040
//! Note the `macos_kqueue` requirement here, otherwise no backend is available on macos.

0 commit comments

Comments
 (0)