From 3e7c6e915f550846427e415a21a149d4a31cf330 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 28 Jan 2021 16:19:56 +0900 Subject: [PATCH] Update `inotify` to 0.9 --- .github/workflows/main.yml | 2 +- CHANGELOG.md | 7 +++++-- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 26d2ca0d..902fad50 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: version: - - 1.36.0 # MSRV + - 1.47.0 # MSRV - stable - nightly os: [ubuntu-latest, macos-latest, windows-latest] diff --git a/CHANGELOG.md b/CHANGELOG.md index 35dcea69..9e01cf8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,10 +14,13 @@ [#268]: https://github.com/notify-rs/notify/pull/268 ## unreleased -- RUSTC: Push the minimum version to 1.36.0 [#276] +- RUSTC: Push the minimum version to 1.47.0 [#280] +- DEPS: Update `inotify` to 0.9 [#280] +- DEPS: Update `mio` to 0.7 and remove `mio-extras` [#278] - FIX: Report events promptly on Linux, even when many occur in rapid succession. [#268] -[#276]: https://github.com/notify-rs/notify/pull/276 +[#280]: https://github.com/notify-rs/notify/pull/280 +[#278]: https://github.com/notify-rs/notify/pull/278 ## 5.0.0-pre.4 (2020-10-31) diff --git a/Cargo.toml b/Cargo.toml index e9759752..40a536d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ serde = { version = "1.0.89", features = ["derive"], optional = true } walkdir = "2.0.1" [target.'cfg(target_os="linux")'.dependencies] -inotify = { version = "0.8", default-features = false } +inotify = { version = "0.9", default-features = false } mio = { version = "0.7.7", features = ["os-ext"] } [target.'cfg(target_os="macos")'.dependencies] diff --git a/README.md b/README.md index e3aed7d2..6cb38dcd 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ You likely want either [the latest 4.0 release] or [5.0.0-pre.3]. - [API Documentation][docs] - [Crate page][crate] - [Changelog][changelog] -- Earliest supported Rust version: **1.36.0** +- Earliest supported Rust version: **1.47.0** As used by: [alacritty], [cargo watch], [cobalt], [docket], [mdBook], [pax] [rdiff], [rust-analyzer], [timetrack], [watchexec], [xi-editor], and others.