Skip to content

Commit 05e916f

Browse files
committed
Prepare for 5.0.0-pre.6
Signed-off-by: Aron Heinecke <[email protected]>
1 parent 79d204e commit 05e916f

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515

1616
## unreleased
1717

18+
19+
20+
## 5.0.0-pre.6 (2021-02-20)
21+
1822
- FIX: Handle interrupted system call errors from mio [#281]
1923

2024
[#281]: https://github.com/notify-rs/notify/pull/281

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notify"
3-
version = "5.0.0-pre.5"
3+
version = "5.0.0-pre.6"
44

55
description = "Cross-platform filesystem notification library"
66
documentation = "https://docs.rs/notify"

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ _Cross-platform filesystem notification library for Rust._
1111

1212
**Caution! This is unstable code!**
1313

14-
You likely want either [the latest 4.0 release] or [5.0.0-pre.5].
14+
You likely want either [the latest 4.0 release] or [5.0.0-pre.6].
1515

1616
[the latest 4.0 release]: https://github.com/notify-rs/notify/tree/v4.0.15#notify
17-
[5.0.0-pre.5]: https://github.com/notify-rs/notify/tree/v5.0.0-pre.5#notify
17+
[5.0.0-pre.6]: https://github.com/notify-rs/notify/tree/v5.0.0-pre.6#notify
1818

1919
(Looking for desktop notifications instead? Have a look at [notify-rust] or
2020
[alert-after]!)
@@ -33,7 +33,7 @@ As used by: [alacritty], [cargo watch], [cobalt], [docket], [mdBook], [pax]
3333
```toml
3434
[dependencies]
3535
crossbeam-channel = "0.4.0"
36-
notify = "5.0.0-pre.5"
36+
notify = "5.0.0-pre.6"
3737
```
3838

3939
## Usage
@@ -146,7 +146,7 @@ let mut watcher: RecommendedWatcher = Watcher::immediate_with_channel(tx)?;
146146
Events can be serialisable via [serde]. To enable the feature:
147147

148148
```toml
149-
notify = { version = "5.0.0-pre.5", features = ["serde"] }
149+
notify = { version = "5.0.0-pre.6", features = ["serde"] }
150150
```
151151

152152
## Platforms
@@ -198,7 +198,7 @@ Written by [Félix Saparelli] and awesome [contributors].
198198
[contributors]: https://github.com/notify-rs/notify/graphs/contributors
199199
[crate]: https://crates.io/crates/notify
200200
[docket]: https://iwillspeak.github.io/docket/
201-
[docs]: https://docs.rs/notify/5.0.0-pre.5/notify/
201+
[docs]: https://docs.rs/notify/5.0.0-pre.6/notify/
202202
[fsnotify]: https://github.com/go-fsnotify/fsnotify
203203
[handlebars-iron]: https://github.com/sunng87/handlebars-iron
204204
[hotwatch]: https://github.com/francesca64/hotwatch

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
//!
55
//! ```toml
66
//! [dependencies]
7-
//! notify = "5.0.0-pre.2"
7+
//! notify = "5.0.0-pre.6"
88
//! ```
99
//!
1010
//! ## Serde
1111
//!
1212
//! Events are serialisable via [serde] if the `serde` feature is enabled:
1313
//!
1414
//! ```toml
15-
//! notify = { version = "5.0.0-pre.2", features = ["serde"] }
15+
//! notify = { version = "5.0.0-pre.6", features = ["serde"] }
1616
//! ```
1717
//!
1818
//! [serde]: https://serde.rs

0 commit comments

Comments
 (0)