From f2a92faab1ec67c598bdff8373d4d38426cdfbd2 Mon Sep 17 00:00:00 2001 From: Wrench56 Date: Sun, 17 Nov 2024 02:08:36 -0500 Subject: [PATCH] Bump version to `7.0.0` in `lib.rs` documentation --- notify/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notify/src/lib.rs b/notify/src/lib.rs index ef063730..f9a3b85c 100644 --- a/notify/src/lib.rs +++ b/notify/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! notify = "6.1.1" +//! notify = "7.0.0" //! ``` //! //! If you want debounced events (or don't need them in-order), see [notify-debouncer-mini](https://docs.rs/notify-debouncer-mini/latest/notify_debouncer_mini/) @@ -24,7 +24,7 @@ //! Events are serializable via [serde](https://serde.rs) if the `serde` feature is enabled: //! //! ```toml -//! notify = { version = "6.1.1", features = ["serde"] } +//! notify = { version = "7.0.0", features = ["serde"] } //! ``` //! //! # Known Problems