Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaust committed Oct 25, 2024
1 parent 89b0cf8 commit a18adde
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ v5 maintenance branch is on `v5_maintenance` after `5.2.0`

v4 commits split out to branch `v4_maintenance` starting with `4.0.16`

## file-id 0.2.2 (unreleased)
## file-id 0.2.2 (2024-10-25)

- CHANGE: get file stats without read permission [#625]

[#625]: https://github.com/notify-rs/notify/issues/625

## notify 7.0.0 (unreleased)
## notify 7.0.0 (2024-10-25)

- CHANGE: raise MSRV to 1.72 [#569] [#610] **breaking**
- CHANGE: move event type to notify-types crate [#559]
Expand All @@ -23,6 +23,7 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16`
- CHANGE: add log statements [#499]
- FIX: prevent UB with illegal instruction for the windows backend [#604] [#607]
- FIX: on Linux report deleted directories correctly [#545]
- FIX: on Linux report access open events [#612]
- FEATURE: enable kqueue on iOS [#533]
- MISC: various minor doc updates and fixes [#535] [#536] [#543] [#565] [#592] [#595]
- MISC: update inotify to 0.10 [#547]
Expand All @@ -39,12 +40,14 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16`
[#565]: https://github.com/notify-rs/notify/pull/565
[#569]: https://github.com/notify-rs/notify/pull/569
[#592]: https://github.com/notify-rs/notify/pull/592
[#595]: https://github.com/notify-rs/notify/pull/595
[#604]: https://github.com/notify-rs/notify/pull/604
[#607]: https://github.com/notify-rs/notify/pull/607
[#610]: https://github.com/notify-rs/notify/pull/610
[#612]: https://github.com/notify-rs/notify/pull/612
[#623]: https://github.com/notify-rs/notify/pull/623

## notify-types 1.0.0 (unreleased)
## notify-types 1.0.0 (2024-10-25)

New crate containing public type definitions for the notify and debouncer crates. [#559]

Expand All @@ -57,8 +60,13 @@ New crate containing public type definitions for the notify and debouncer crates
[#568]: https://github.com/notify-rs/notify/pull/568
[#570]: https://github.com/notify-rs/notify/pull/570

## debouncer-full 0.4.0 (unreleased)
## debouncer-mini 0.5.0 (2024-10-25)

- CHANGE: update notify to version 7.0.0

## debouncer-full 0.4.0 (2024-10-25)

- CHANGE: update notify to version 7.0.0
- CHANGE: manage root folder paths for the file ID cache automatically [#557] **breaking**

```rust
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bitflags = "2.3.0"
crossbeam-channel = "0.5.0"
deser-hjson = "2.2.4"
env_logger = "0.11.2"
file-id = { path = "file-id" }
file-id = { version = "0.2.2", path = "file-id" }
filetime = "0.2.22"
fsevent-sys = "4.0.0"
futures = "0.3.30"
Expand All @@ -35,10 +35,10 @@ log = "0.4.17"
mio = { version = "1.0", features = ["os-ext"] }
instant = "0.1.12"
nix = "0.27.0"
notify = { path = "notify" }
notify-debouncer-full = { path = "notify-debouncer-full" }
notify-debouncer-mini = { path = "notify-debouncer-mini" }
notify-types = { path = "notify-types" }
notify = { version = "7.0.0", path = "notify" }
notify-debouncer-full = { version = "0.4.0", path = "notify-debouncer-full" }
notify-debouncer-mini = { version = "0.5.0", path = "notify-debouncer-mini" }
notify-types = { version = "1.0.0", path = "notify-types" }
pretty_assertions = "1.3.0"
rand = "0.8.5"
rstest = "0.21.0"
Expand Down
2 changes: 1 addition & 1 deletion file-id/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "file-id"
version = "0.2.1"
version = "0.2.2"
description = "Utility for reading inode numbers (Linux, MacOS) and file IDs (Windows)"
documentation = "https://docs.rs/notify"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion notify-debouncer-mini/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notify-debouncer-mini"
version = "0.4.1"
version = "0.5.0"
description = "notify mini debouncer for events"
documentation = "https://docs.rs/notify-debouncer-mini"
authors = ["Aron Heinecke <[email protected]>"]
Expand Down
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 = "6.1.1"
version = "7.0.0"
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
readme = "../README.md"
Expand Down

0 comments on commit a18adde

Please sign in to comment.