Skip to content

Commit b6e4094

Browse files
committed
prepare v6 and fix 5.2.0
also add debouncer-full without default features to run check
1 parent 7b89553 commit b6e4094

File tree

3 files changed

+27
-9
lines changed

3 files changed

+27
-9
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@ jobs:
6868
run: cargo check -p notify-debouncer-mini --no-default-features
6969
# -p required for feature selection to actually work!
7070

71+
- name: check notify debouncer full features
72+
if: matrix.version == 'stable'
73+
run: cargo check -p notify-debouncer-full --no-default-features
74+
# -p required for feature selection to actually work!
75+
7176
- name: check build examples
7277
if: matrix.version == 'stable'
7378
run: cargo check --package examples --examples

CHANGELOG.md

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
# Changelog
22

3+
v5 maintenance branch is on `v5_maintenance` after `5.2.0`
34
v4 commits split out to branch `v4_maintenance` starting with `4.0.16`
45

5-
## notify 6.0.0
6+
## notify 6.0.0 (2023-05-17)
67

7-
- CHANGE: files and directories moved into a watch folder on Linux will now be reported as `rename to` events instead of `create` events
8-
- CHANGE: on Linux `rename from` events will be emitted immediately without starting a new thread
9-
- CHANGE: raise MSRV to 1.60
8+
- CHANGE: files and directories moved into a watch folder on Linux will now be reported as `rename to` events instead of `create` events [#480]
9+
- CHANGE: on Linux `rename from` events will be emitted immediately without starting a new thread [#480]
10+
- CHANGE: raise MSRV to 1.60 [#480]
1011

11-
## debouncer-full 0.1.0
12+
## debouncer-mini 0.3.0 (2023-05-17)
13+
14+
- CHANGE: upgrade to notify 6.0.0, pushing MSRV to 1.60 [#480]
15+
16+
## debouncer-full 0.1.0 (2023-05-17)
17+
18+
Newly introduced alternative debouncer with more features. [#480]
1219

1320
- FEATURE: only emit a single `rename` event if the rename `From` and `To` events can be matched
1421
- FEATURE: merge multiple `rename` events
@@ -17,9 +24,13 @@ v4 commits split out to branch `v4_maintenance` starting with `4.0.16`
1724
- FEATURE: don't emit duplicate create events
1825
- FEATURE: don't emit `Modify` events after a `Create` event
1926

20-
## notify 5.2.0
27+
[#480]: https://github.com/notify-rs/notify/pull/480
28+
29+
## notify 5.2.0 (2023-05-17)
30+
31+
- CHANGE: implement `Copy` for `EventKind` and `ModifyKind` [#481]
2132

22-
- CHANGE: implement `Copy` for `EventKind` and `ModifyKind` [#458]
33+
[#481]: https://github.com/notify-rs/notify/pull/481
2334

2435
## notify 5.1.0 (2023-01-15)
2536

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ _Cross-platform filesystem notification library for Rust._
1313
[alert-after]!)
1414

1515
- [API Documentation][docs]
16-
- [Debouncer Documentation][debouncer]
16+
- [Mini Debouncer Documentation][debouncer-full]
17+
- [Full Debouncer Documentation][debouncer-mini]
1718
- [Examples][examples]
1819
- [Crate page][crate]
1920
- [Changelog][changelog]
@@ -62,7 +63,8 @@ Originally created by [Félix Saparelli] and awesome [contributors].
6263

6364
[Chokidar]: https://github.com/paulmillr/chokidar
6465
[FileSystemEventSecurity]: https://developer.apple.com/library/mac/documentation/Darwin/Conceptual/FSEvents_ProgGuide/FileSystemEventSecurity/FileSystemEventSecurity.html
65-
[debouncer]: https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini
66+
[debouncer-full]: https://github.com/notify-rs/notify/tree/main/notify-debouncer-full
67+
[debouncer-mini]: https://github.com/notify-rs/notify/tree/main/notify-debouncer-mini
6668
[Félix Saparelli]: https://passcod.name
6769
[alacritty]: https://github.com/jwilm/alacritty
6870
[alert-after]: https://github.com/frewsxcv/alert-after

0 commit comments

Comments
 (0)