diff --git a/CHANGELOG.md b/CHANGELOG.md index 295146d1..0e4c4e2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ ## unreleased +## 5.0.0-pre.7 (2021-04-15) + - FIX: Display proper error message when reaching inotify limits on linux [#285] - FIX: Fix leaks on Windows [#298] diff --git a/Cargo.toml b/Cargo.toml index 6c690aed..6a7a8e57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notify" -version = "5.0.0-pre.6" +version = "5.0.0-pre.7" description = "Cross-platform filesystem notification library" documentation = "https://docs.rs/notify" diff --git a/README.md b/README.md index fb9c3c9f..4123ef2f 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ _Cross-platform filesystem notification library for Rust._ **Caution! This is unstable code!** -You likely want either [the latest 4.0 release] or [5.0.0-pre.6]. +You likely want either [the latest 4.0 release] or [5.0.0-pre.7]. -[the latest 4.0 release]: /~https://github.com/notify-rs/notify/tree/v4.0.15#notify -[5.0.0-pre.6]: /~https://github.com/notify-rs/notify/tree/v5.0.0-pre.6#notify +[the latest 4.0 release]: /~https://github.com/notify-rs/notify/tree/v4.0.16#notify +[5.0.0-pre.7]: /~https://github.com/notify-rs/notify/tree/v5.0.0-pre.7#notify (Looking for desktop notifications instead? Have a look at [notify-rust] or [alert-after]!) @@ -33,7 +33,7 @@ As used by: [alacritty], [cargo watch], [cobalt], [docket], [mdBook], [pax] ```toml [dependencies] crossbeam-channel = "0.4.0" -notify = "5.0.0-pre.6" +notify = "5.0.0-pre.7" ``` ## Usage @@ -146,7 +146,7 @@ let mut watcher: RecommendedWatcher = Watcher::immediate_with_channel(tx)?; Events can be serialisable via [serde]. To enable the feature: ```toml -notify = { version = "5.0.0-pre.6", features = ["serde"] } +notify = { version = "5.0.0-pre.7", features = ["serde"] } ``` ## Platforms @@ -198,7 +198,7 @@ Written 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/5.0.0-pre.6/notify/ +[docs]: https://docs.rs/notify/5.0.0-pre.7/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/src/lib.rs b/src/lib.rs index 4e2fa754..3747f716 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! notify = "5.0.0-pre.6" +//! notify = "5.0.0-pre.7" //! ``` //! //! ## Serde @@ -12,7 +12,7 @@ //! Events are serialisable via [serde] if the `serde` feature is enabled: //! //! ```toml -//! notify = { version = "5.0.0-pre.6", features = ["serde"] } +//! notify = { version = "5.0.0-pre.7", features = ["serde"] } //! ``` //! //! [serde]: https://serde.rs