From 4817bdabadd5fdddabb94dbf60b704d3ef6d8c59 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 19 Aug 2024 13:32:29 +0200 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf9678c..710d1d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## v0.11.0 (2024-08-19) + +- Fix link in README ([#209]) +- **Breaking change:** Make `bits` field of `EventMask`/`WatchMask` inaccessible. You can use the `.bits()` method instead. ([#211], [#218]) +- Fix various links in documentation ([#213]) +- Bump minimum supported Rust version (MSRV) to 1.70. ([#219]) + +[#209]: https://github.com/hannobraun/inotify-rs/pull/209 +[#211]: https://github.com/hannobraun/inotify-rs/pull/211 +[#213]: https://github.com/hannobraun/inotify-rs/pull/213 +[#218]: https://github.com/hannobraun/inotify-rs/pull/218 +[#219]: https://github.com/hannobraun/inotify-rs/pull/219 + + ## v0.10.2 (2023-07-27) - Fix broken links to `Watches` in documentation ([#205]) From 96fc2c633bb7133414949cd5094599d35d8e82a7 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 19 Aug 2024 13:33:18 +0200 Subject: [PATCH 2/2] Update version --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 68fa627..e485f19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "inotify" -version = "0.10.2" +version = "0.11.0" authors = [ "Hanno Braun ", "Félix Saparelli ", diff --git a/README.md b/README.md index f40f215..e5ecd52 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Include it in your `Cargo.toml`: ```toml [dependencies] -inotify = "0.10" +inotify = "0.11" ``` Please refer to the [documentation] and the example above, for information on how to use it in your code.