Skip to content

Commit

Permalink
Release v5.0.0-pre.7
Browse files Browse the repository at this point in the history
Also update v4 version in readme

Signed-off-by: Aron Heinecke <aron.heinecke@t-online.de>
  • Loading branch information
0xpr03 committed Apr 15, 2021
1 parent 6d3c3f3 commit 4a3f5a3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

## unreleased

## 5.0.0-pre.7 (2021-04-15)

- FIX: Display proper error message when reaching inotify limits on linux [#285]
- FIX: Fix leaks on Windows [#298]

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notify"
version = "5.0.0-pre.6"
version = "5.0.0-pre.7"

description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6].
You likely want either [the latest 4.0 release] or [5.0.0-pre.7].

[the latest 4.0 release]: /~https://github.com/notify-rs/notify/tree/v4.0.15#notify
[5.0.0-pre.6]: /~https://github.com/notify-rs/notify/tree/v5.0.0-pre.6#notify
[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

(Looking for desktop notifications instead? Have a look at [notify-rust] or
[alert-after]!)
Expand All @@ -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.6"
notify = "5.0.0-pre.7"
```

## Usage
Expand Down Expand Up @@ -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.6", features = ["serde"] }
notify = { version = "5.0.0-pre.7", features = ["serde"] }
```

## Platforms
Expand Down Expand Up @@ -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.6/notify/
[docs]: https://docs.rs/notify/5.0.0-pre.7/notify/
[fsnotify]: /~https://github.com/go-fsnotify/fsnotify
[handlebars-iron]: /~https://github.com/sunng87/handlebars-iron
[hotwatch]: /~https://github.com/francesca64/hotwatch
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
//!
//! ```toml
//! [dependencies]
//! notify = "5.0.0-pre.6"
//! notify = "5.0.0-pre.7"
//! ```
//!
//! ## Serde
//!
//! Events are serialisable via [serde] if the `serde` feature is enabled:
//!
//! ```toml
//! notify = { version = "5.0.0-pre.6", features = ["serde"] }
//! notify = { version = "5.0.0-pre.7", features = ["serde"] }
//! ```
//!
//! [serde]: https://serde.rs
Expand Down

0 comments on commit 4a3f5a3

Please sign in to comment.