diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fda6a81..c6a3897a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,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` -## debouncer-full 0.2.0 +## notify 6.0.1 (2023-06-16) + +- DOCS: fix swapped debouncer-full / -mini links in the readme/crates.io [4be6bde] + +[4be6bde]: https://github.com/notify-rs/notify/commit/4be6bdef4fa7b260a3a56a11212ac074f8e39b39 + +## debouncer-full 0.2.0 (2023-06-16) - CHANGE: emit events as `DebouncedEvent`s, each containing the original notify event and the time at which it occurred [#488] diff --git a/README.md b/README.md index 40211e72..f1fa89de 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Originally created by [FĂ©lix Saparelli] and awesome [contributors]. [contributors]: https://github.com/notify-rs/notify/graphs/contributors [crate]: https://crates.io/crates/notify [docket]: https://iwillspeak.github.io/docket/ -[docs]: https://docs.rs/notify/6.0.0/notify/ +[docs]: https://docs.rs/notify/6.0.1/notify/ [fsnotify]: https://github.com/go-fsnotify/fsnotify [handlebars-iron]: https://github.com/sunng87/handlebars-iron [hotwatch]: https://github.com/francesca64/hotwatch diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 594d5df0..cf2a3d33 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -5,7 +5,7 @@ publish = false edition = "2021" [dev-dependencies] -notify = { version = "6.0.0", path = "../notify" } +notify = { version = "6.0.1", path = "../notify" } notify-debouncer-mini = { version = "0.3.0", path = "../notify-debouncer-mini" } notify-debouncer-full = { version = "0.2.0", path = "../notify-debouncer-full" } futures = "0.3" diff --git a/examples/hot_reload_tide/Cargo.toml b/examples/hot_reload_tide/Cargo.toml index 4287c227..4c4a6efb 100644 --- a/examples/hot_reload_tide/Cargo.toml +++ b/examples/hot_reload_tide/Cargo.toml @@ -11,7 +11,7 @@ tide = "0.16.0" async-std = { version = "1.6.0", features = ["attributes"] } serde_json = "1.0" serde = "1.0.115" -notify = { version = "6.0.0", features = ["serde"], path = "../../notify" } +notify = { version = "6.0.1", features = ["serde"], path = "../../notify" } # required to prevent mixing with workspace # hack to prevent cargo audit from catching this diff --git a/notify-debouncer-full/Cargo.toml b/notify-debouncer-full/Cargo.toml index c82a48f1..94130ad5 100644 --- a/notify-debouncer-full/Cargo.toml +++ b/notify-debouncer-full/Cargo.toml @@ -24,7 +24,7 @@ default = ["crossbeam"] crossbeam = ["crossbeam-channel","notify/crossbeam-channel"] [dependencies] -notify = { version = "6.0.0", path = "../notify" } +notify = { version = "6.0.1", path = "../notify" } crossbeam-channel = { version = "0.5", optional = true } file-id = { version = "0.1.0", path = "../file-id" } walkdir = "2.2.2" diff --git a/notify-debouncer-mini/Cargo.toml b/notify-debouncer-mini/Cargo.toml index 6820f4e1..cae58e86 100644 --- a/notify-debouncer-mini/Cargo.toml +++ b/notify-debouncer-mini/Cargo.toml @@ -24,6 +24,6 @@ default = ["crossbeam"] crossbeam = ["crossbeam-channel","notify/crossbeam-channel"] [dependencies] -notify = { version = "6.0.0", path = "../notify" } +notify = { version = "6.0.1", path = "../notify" } crossbeam-channel = { version = "0.5", optional = true } serde = { version = "1.0.89", features = ["derive"], optional = true } diff --git a/notify/Cargo.toml b/notify/Cargo.toml index 5e049861..4f996ed4 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notify" -version = "6.0.0" +version = "6.0.1" rust-version = "1.60" description = "Cross-platform filesystem notification library" documentation = "https://docs.rs/notify" diff --git a/notify/src/lib.rs b/notify/src/lib.rs index e0826f3d..b8f24e4b 100644 --- a/notify/src/lib.rs +++ b/notify/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! notify = "6.0.0" +//! notify = "6.0.1" //! ``` //! //! If you want debounced events, see [notify-debouncer-mini](https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini) @@ -24,7 +24,7 @@ //! Events are serialisable via [serde](https://serde.rs) if the `serde` feature is enabled: //! //! ```toml -//! notify = { version = "6.0.0", features = ["serde"] } +//! notify = { version = "6.0.1", features = ["serde"] } //! ``` //! //! ### Crossbeam-Channel & Tokio @@ -35,7 +35,7 @@ //! You can disable crossbeam-channel, letting notify fallback to std channels via //! //! ```toml -//! notify = { version = "6.0.0", default-features = false, features = ["macos_kqueue"] } +//! notify = { version = "6.0.1", default-features = false, features = ["macos_kqueue"] } //! // Alternatively macos_fsevent instead of macos_kqueue //! ``` //! Note the `macos_kqueue` requirement here, otherwise no backend is available on macos.