From 7dd7c2329bce043fe46a39d7a3a51726117295e7 Mon Sep 17 00:00:00 2001 From: Aron Heinecke Date: Wed, 12 May 2021 19:27:09 +0200 Subject: [PATCH] Prepare 5.0.0-pre.8 Signed-off-by: Aron Heinecke --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 10 +++++----- src/lib.rs | 4 ++-- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a23399a5..f3bf8383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,11 +17,15 @@ ## unreleased +## 5.0.0-pre.8 (2021-05-12) + +- HOTFIX: Fix breaking change in fsevent-sys in minor version destroying builds [#316] - FIX: Don't crash on macos when creating & deleting folders in rapid succession [#302] - FIX: Remove `anymap`, and replace event attributes with an opaque type. [#306] [#302]: https://github.com/notify-rs/notify/pull/302 [#306]: https://github.com/notify-rs/notify/pull/306 +[#316]: https://github.com/notify-rs/notify/pull/316 ## 5.0.0-pre.7 (2021-04-15) diff --git a/Cargo.toml b/Cargo.toml index b6aaa978..c8c86b95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notify" -version = "5.0.0-pre.7" +version = "5.0.0-pre.8" description = "Cross-platform filesystem notification library" documentation = "https://docs.rs/notify" diff --git a/README.md b/README.md index 4123ef2f..e70b6c6e 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.7]. +You likely want either [the latest 4.0 release] or [5.0.0-pre.8]. [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 +[5.0.0-pre.8]: https://github.com/notify-rs/notify/tree/v5.0.0-pre.8#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.7" +notify = "5.0.0-pre.8" ``` ## 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.7", features = ["serde"] } +notify = { version = "5.0.0-pre.8", 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.7/notify/ +[docs]: https://docs.rs/notify/5.0.0-pre.8/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 872c59f8..efc4f63e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! notify = "5.0.0-pre.7" +//! notify = "5.0.0-pre.8" //! ``` //! //! ## Serde @@ -12,7 +12,7 @@ //! Events are serialisable via [serde] if the `serde` feature is enabled: //! //! ```toml -//! notify = { version = "5.0.0-pre.7", features = ["serde"] } +//! notify = { version = "5.0.0-pre.8", features = ["serde"] } //! ``` //! //! [serde]: https://serde.rs