Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish v0.11.0 #220

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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])
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "inotify"
version = "0.10.2"
version = "0.11.0"
authors = [
"Hanno Braun <[email protected]>",
"Félix Saparelli <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading