Skip to content

Commit a18adde

Browse files
committed
Prepare release
1 parent 89b0cf8 commit a18adde

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ v5 maintenance branch is on `v5_maintenance` after `5.2.0`
66

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

9-
## file-id 0.2.2 (unreleased)
9+
## file-id 0.2.2 (2024-10-25)
1010

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

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

15-
## notify 7.0.0 (unreleased)
15+
## notify 7.0.0 (2024-10-25)
1616

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

47-
## notify-types 1.0.0 (unreleased)
50+
## notify-types 1.0.0 (2024-10-25)
4851

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

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

60-
## debouncer-full 0.4.0 (unreleased)
63+
## debouncer-mini 0.5.0 (2024-10-25)
6164

65+
- CHANGE: update notify to version 7.0.0
66+
67+
## debouncer-full 0.4.0 (2024-10-25)
68+
69+
- CHANGE: update notify to version 7.0.0
6270
- CHANGE: manage root folder paths for the file ID cache automatically [#557] **breaking**
6371

6472
```rust

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bitflags = "2.3.0"
2323
crossbeam-channel = "0.5.0"
2424
deser-hjson = "2.2.4"
2525
env_logger = "0.11.2"
26-
file-id = { path = "file-id" }
26+
file-id = { version = "0.2.2", path = "file-id" }
2727
filetime = "0.2.22"
2828
fsevent-sys = "4.0.0"
2929
futures = "0.3.30"
@@ -35,10 +35,10 @@ log = "0.4.17"
3535
mio = { version = "1.0", features = ["os-ext"] }
3636
instant = "0.1.12"
3737
nix = "0.27.0"
38-
notify = { path = "notify" }
39-
notify-debouncer-full = { path = "notify-debouncer-full" }
40-
notify-debouncer-mini = { path = "notify-debouncer-mini" }
41-
notify-types = { path = "notify-types" }
38+
notify = { version = "7.0.0", path = "notify" }
39+
notify-debouncer-full = { version = "0.4.0", path = "notify-debouncer-full" }
40+
notify-debouncer-mini = { version = "0.5.0", path = "notify-debouncer-mini" }
41+
notify-types = { version = "1.0.0", path = "notify-types" }
4242
pretty_assertions = "1.3.0"
4343
rand = "0.8.5"
4444
rstest = "0.21.0"

file-id/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "file-id"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Utility for reading inode numbers (Linux, MacOS) and file IDs (Windows)"
55
documentation = "https://docs.rs/notify"
66
readme = "README.md"

notify-debouncer-mini/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notify-debouncer-mini"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
description = "notify mini debouncer for events"
55
documentation = "https://docs.rs/notify-debouncer-mini"
66
authors = ["Aron Heinecke <Ox0p54r36@t-online.de>"]

notify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notify"
3-
version = "6.1.1"
3+
version = "7.0.0"
44
description = "Cross-platform filesystem notification library"
55
documentation = "https://docs.rs/notify"
66
readme = "../README.md"

0 commit comments

Comments
 (0)