Skip to content

Commit 2c8310d

Browse files
authored
chore: release (#51)
1 parent 3e83764 commit 2c8310d

12 files changed

Lines changed: 51 additions & 15 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ criterion = "0.7.0"
8383
flume = "0.11.1"
8484
deser-hjson = "2.2.4"
8585
tracing-subscriber = "0.3.20"
86-
rolldown-file-id = { version = "0.2.4", path = "file-id" }
86+
rolldown-file-id = { version = "0.2.5", path = "file-id" }
8787
fsevent-sys = "4.0.0"
8888
futures = "0.3.30"
8989
inotify = { version = "0.11.0", default-features = false }
@@ -93,10 +93,10 @@ libc = "0.2.4"
9393
tracing = "0.1.41"
9494
mio = { version = "1.0", features = ["os-ext"] }
9595
web-time = "1.1.0"
96-
rolldown-notify = { version = "9.1.0", path = "notify" }
97-
rolldown-notify-debouncer-full = { version = "0.7.1", path = "notify-debouncer-full" }
98-
rolldown-notify-debouncer-mini = { version = "0.8.1", path = "notify-debouncer-mini" }
99-
rolldown-notify-types = { version = "2.0.1", path = "notify-types" }
96+
rolldown-notify = { version = "9.1.1", path = "notify" }
97+
rolldown-notify-debouncer-full = { version = "0.7.2", path = "notify-debouncer-full" }
98+
rolldown-notify-debouncer-mini = { version = "0.8.2", path = "notify-debouncer-mini" }
99+
rolldown-notify-types = { version = "2.0.2", path = "notify-types" }
100100
pretty_assertions = "1.3.0"
101101
rstest = "0.26.0"
102102
serde = { version = "1.0.89", features = ["derive"] }

file-id/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.5](https://github.com/rolldown/notify/compare/rolldown-file-id-v0.2.4...rolldown-file-id-v0.2.5) - 2025-12-18
11+
12+
### Other
13+
14+
- *(file-id)* reduce unsafe block range and add safety comment ([#52](https://github.com/rolldown/notify/pull/52))
15+
- enable more clippy rules ([#50](https://github.com/rolldown/notify/pull/50))
16+
1017
## [0.2.4](https://github.com/rolldown/notify/compare/rolldown-file-id-v0.2.3...rolldown-file-id-v0.2.4) - 2025-11-16
1118

1219
### Other

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 = "rolldown-file-id"
3-
version = "0.2.4"
3+
version = "0.2.5"
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-full/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.7.2](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.7.1...rolldown-notify-debouncer-full-v0.7.2) - 2025-12-18
11+
12+
### Other
13+
14+
- enable more clippy rules ([#50](https://github.com/rolldown/notify/pull/50))
15+
1016
## [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
1117

1218
### 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.1"
3+
version = "0.7.2"
44
description = "notify event debouncer optimized for ease of use"
55
documentation = "https://docs.rs/notify-debouncer-full"
66
authors = ["Daniel Faust <hessijames@gmail.com>"]

notify-debouncer-mini/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.2](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.8.1...rolldown-notify-debouncer-mini-v0.8.2) - 2025-12-18
11+
12+
### Other
13+
14+
- enable more clippy rules ([#50](https://github.com/rolldown/notify/pull/50))
15+
1016
## [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
1117

1218
### 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.1"
3+
version = "0.8.2"
44
description = "notify mini debouncer for events"
55
documentation = "https://docs.rs/notify-debouncer-mini"
66
authors = ["Aron Heinecke <Ox0p54r36@t-online.de>"]

notify-types/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.0.2](https://github.com/rolldown/notify/compare/rolldown-notify-types-v2.0.1...rolldown-notify-types-v2.0.2) - 2025-12-18
11+
12+
### Other
13+
14+
- enable more clippy rules ([#50](https://github.com/rolldown/notify/pull/50))
15+
1016
## [2.0.1](https://github.com/rolldown/notify/compare/rolldown-notify-types-v2.0.0...rolldown-notify-types-v2.0.1) - 2025-11-16
1117

1218
### Other

notify-types/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-types"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "Types used by the notify crate"
55
documentation = "https://docs.rs/notify-types"
66
readme = "../README.md"

0 commit comments

Comments
 (0)