Skip to content

Commit 0e3bc44

Browse files
authored
chore: release (#39)
1 parent 13afa87 commit 0e3bc44

File tree

8 files changed

+51
-9
lines changed

8 files changed

+51
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ libc = "0.2.4"
3535
tracing = "0.1.41"
3636
mio = { version = "1.0", features = ["os-ext"] }
3737
web-time = "1.1.0"
38-
rolldown-notify = { version = "9.0.0", path = "notify" }
39-
rolldown-notify-debouncer-full = { version = "0.7.0", path = "notify-debouncer-full" }
40-
rolldown-notify-debouncer-mini = { version = "0.8.0", path = "notify-debouncer-mini" }
38+
rolldown-notify = { version = "9.1.0", path = "notify" }
39+
rolldown-notify-debouncer-full = { version = "0.7.1", path = "notify-debouncer-full" }
40+
rolldown-notify-debouncer-mini = { version = "0.8.1", path = "notify-debouncer-mini" }
4141
rolldown-notify-types = { version = "2.0.1", path = "notify-types" }
4242
pretty_assertions = "1.3.0"
4343
rstest = "0.26.0"

notify-debouncer-full/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.1](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.7.0...rolldown-notify-debouncer-full-v0.7.1) - 2025-11-25
11+
12+
### Added
13+
14+
- add tracing logs to remaining files ([#48](https://github.com/rolldown/notify/pull/48))
15+
16+
### Other
17+
18+
- use tracing instead of log ([#43](https://github.com/rolldown/notify/pull/43))
19+
1020
## [0.7.0](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.6.4...rolldown-notify-debouncer-full-v0.7.0) - 2025-11-23
1121

1222
### Added

notify-debouncer-full/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rolldown-notify-debouncer-full"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "notify event debouncer optimized for ease of use"
55
documentation = "https://docs.rs/notify-debouncer-full"
66
authors = ["Daniel Faust <[email protected]>"]

notify-debouncer-mini/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.1](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.8.0...rolldown-notify-debouncer-mini-v0.8.1) - 2025-11-25
11+
12+
### Added
13+
14+
- add tracing logs to remaining files ([#48](https://github.com/rolldown/notify/pull/48))
15+
16+
### Other
17+
18+
- use tracing instead of log ([#43](https://github.com/rolldown/notify/pull/43))
19+
1020
## [0.8.0](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.7.4...rolldown-notify-debouncer-mini-v0.8.0) - 2025-11-23
1121

1222
### Added

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 = "rolldown-notify-debouncer-mini"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
description = "notify mini debouncer for events"
55
documentation = "https://docs.rs/notify-debouncer-mini"
66
authors = ["Aron Heinecke <[email protected]>"]

notify/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.1.0](https://github.com/rolldown/notify/compare/rolldown-notify-v9.0.0...rolldown-notify-v9.1.0) - 2025-11-25
11+
12+
### Added
13+
14+
- add tracing logs to remaining files ([#48](https://github.com/rolldown/notify/pull/48))
15+
- add tracing logs for fsevent backend ([#47](https://github.com/rolldown/notify/pull/47))
16+
- add tracing logs for kqueue backend ([#46](https://github.com/rolldown/notify/pull/46))
17+
- add tracing logs for Windows backend ([#45](https://github.com/rolldown/notify/pull/45))
18+
- add tracing logs for inotify backend ([#44](https://github.com/rolldown/notify/pull/44))
19+
20+
### Fixed
21+
22+
- filter out unrelated events for inotify & kqueue backend ([#38](https://github.com/rolldown/notify/pull/38))
23+
24+
### Other
25+
26+
- add optional modify_data_size event expects for kqueue ([#49](https://github.com/rolldown/notify/pull/49))
27+
- use tracing instead of log ([#43](https://github.com/rolldown/notify/pull/43))
28+
- tweak `upgrade_to_recursive` kqueue test to reduce flakiness ([#42](https://github.com/rolldown/notify/pull/42))
29+
- tweak `upgrade_to_recursive` kqueue test to reduce flakiness ([#41](https://github.com/rolldown/notify/pull/41))
30+
- add `upgrade_to_recursive` tests ([#40](https://github.com/rolldown/notify/pull/40))
31+
1032
## [9.0.0](https://github.com/rolldown/notify/compare/rolldown-notify-v8.2.4...rolldown-notify-v9.0.0) - 2025-11-23
1133

1234
### Added

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 = "rolldown-notify"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
description = "Cross-platform filesystem notification library"
55
documentation = "https://docs.rs/notify"
66
readme = "../README.md"

0 commit comments

Comments
 (0)