Skip to content

Commit

Permalink
Prepare 5.0.0-pre.8
Browse files Browse the repository at this point in the history
Signed-off-by: Aron Heinecke <[email protected]>
  • Loading branch information
0xpr03 committed May 12, 2021
1 parent a40c56e commit 7dd7c23
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@

## unreleased

## 5.0.0-pre.8 (2021-05-12)

- HOTFIX: Fix breaking change in fsevent-sys in minor version destroying builds [#316]
- FIX: Don't crash on macos when creating & deleting folders in rapid succession [#302]
- FIX: Remove `anymap`, and replace event attributes with an opaque type. [#306]

[#302]: https://github.com/notify-rs/notify/pull/302
[#306]: https://github.com/notify-rs/notify/pull/306
[#316]: https://github.com/notify-rs/notify/pull/316

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

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.7"
version = "5.0.0-pre.8"

description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
Expand Down
10 changes: 5 additions & 5 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.7].
You likely want either [the latest 4.0 release] or [5.0.0-pre.8].

[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
[5.0.0-pre.8]: https://github.com/notify-rs/notify/tree/v5.0.0-pre.8#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.7"
notify = "5.0.0-pre.8"
```

## 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.7", features = ["serde"] }
notify = { version = "5.0.0-pre.8", 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.7/notify/
[docs]: https://docs.rs/notify/5.0.0-pre.8/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.7"
//! notify = "5.0.0-pre.8"
//! ```
//!
//! ## Serde
//!
//! Events are serialisable via [serde] if the `serde` feature is enabled:
//!
//! ```toml
//! notify = { version = "5.0.0-pre.7", features = ["serde"] }
//! notify = { version = "5.0.0-pre.8", features = ["serde"] }
//! ```
//!
//! [serde]: https://serde.rs
Expand Down

0 comments on commit 7dd7c23

Please sign in to comment.