Skip to content

Commit

Permalink
prepare 5.0.0-pre.16
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpr03 committed Aug 14, 2022
1 parent 29376ad commit 959b5ec
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 28 deletions.
37 changes: 17 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
# Changelog

## 5.0.0 (future)

- CHANGE: Rewrite event debouncing.
- CHANGE: Remove `Op` and `DebouncedEvent` event classification. [#187]
- CHANGE: Make it opt-in to receive information about event kind. [#187]
- CHANGE: Make `Notice` events opt-in.
- CHANGE: Remove `Sender`s from watcher API in favour of `EventFn` [#214]
- META: The project maintainers have changed from @passcod to notify-rs.
- CHANGE: Avoid stating the watched path for non-recursive watches with inotify [#256]
- FIX: Report events promptly on Linux, even when many occur in rapid succession. [#268]
- FIX: Remove `anymap`, and replace event attributes with an opaque type. [#306]
- CHANGE: Hide `fsevent::{CFRunLoopIsWaiting,callback}`, fix clippy lint warnings [#312]
- CHANGE: Add more trait impls for public types, in particular `Debug` [#377]

[#268]: https://github.com/notify-rs/notify/pull/268
[#306]: https://github.com/notify-rs/notify/pull/306
[#312]: https://github.com/notify-rs/notify/pull/312
[#377]: https://github.com/notify-rs/notify/pull/377

## unreleased
## 5.0.0-pre.16 (2022-08-12)

- CHANGE: require config for watcher creation and unify config [#426]
- CHANGE: fsevent: use RenameMode::Any for renaming events [#371]
- FEATURE: re-add debouncer as new crate and fixup CI [#286]
- FEATURE: allow disabling crossbeam-channel dependency [#425]
- FIX: PollWatcher panic after delete-and-recreate [#406]
- MISC: rework pollwatcher internally [#409]
- DOCS: cleanup all docs towards v5 [#395]

[#395]: https://github.com/notify-rs/notify/pull/395
[#406]: https://github.com/notify-rs/notify/pull/406
[#409]: https://github.com/notify-rs/notify/pull/409
[#425]: https://github.com/notify-rs/notify/pull/425
[#286]: https://github.com/notify-rs/notify/pull/286
[#426]: https://github.com/notify-rs/notify/pull/426
[#371]: https://github.com/notify-rs/notify/pull/371

## 5.0.0-pre.15 (2022-04-30)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Originally created 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.15/notify/
[docs]: https://docs.rs/notify/5.0.0-pre.16/notify/
[fsnotify]: https://github.com/go-fsnotify/fsnotify
[handlebars-iron]: https://github.com/sunng87/handlebars-iron
[hotwatch]: https://github.com/francesca64/hotwatch
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ publish = false
edition = "2021"

[dev-dependencies]
notify = { version = "5.0.0-pre.15" }
notify = { version = "5.0.0-pre.16" }
notify-debouncer-mini = { version = "0.1" }
futures = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion examples/hot_reload_tide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tide = "0.16.0"
async-std = { version = "1.6.0", features = ["attributes"] }
serde_json = "1.0"
serde = "1.0.115"
notify = { version = "5.0.0-pre.15", features = ["serde"], path = "../../notify" }
notify = { version = "5.0.0-pre.16", features = ["serde"], path = "../../notify" }

# required to prevent mixing with workspace
# hack to prevent cargo audit from catching this
Expand Down
2 changes: 1 addition & 1 deletion notify-debouncer-mini/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ path = "src/lib.rs"
default = ["crossbeam-channel"]

[dependencies]
notify = "5.0.0-pre.15"
notify = "5.0.0-pre.16"
crossbeam-channel = { version = "0.5", optional = true }
serde = { version = "1.0.89", features = ["derive"], optional = true }
2 changes: 1 addition & 1 deletion notify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notify"
version = "5.0.0-pre.15"
version = "5.0.0-pre.16"
rust-version = "1.56"
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
Expand Down
6 changes: 3 additions & 3 deletions notify/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! ```toml
//! [dependencies]
//! notify = "5.0.0-pre.15"
//! notify = "5.0.0-pre.16"
//! ```
//!
//! If you want debounced events, see [notify-debouncer-mini](https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini)
Expand All @@ -23,7 +23,7 @@
//! Events are serialisable via [serde](https://serde.rs) if the `serde` feature is enabled:
//!
//! ```toml
//! notify = { version = "5.0.0-pre.15", features = ["serde"] }
//! notify = { version = "5.0.0-pre.16", features = ["serde"] }
//! ```
//!
//! ### Crossbeam-Channel & Tokio
Expand All @@ -34,7 +34,7 @@
//! You can disable crossbeam-channel, letting notify fallback to std channels via
//!
//! ```toml
//! notify = { version = "5.0.0-pre.15", default-features = false, feature=["macos_kqueue"] }
//! notify = { version = "5.0.0-pre.16", default-features = false, feature=["macos_kqueue"] }
//! // Alternatively macos_fsevent instead of macos_kqueue
//! ```
//! Note the `macos_kqueue` requirement here, otherwise no backend is available on macos.
Expand Down

0 comments on commit 959b5ec

Please sign in to comment.