Skip to content

Commit

Permalink
Bump debouncer-full version and add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaust committed Jan 21, 2024
1 parent e794e08 commit a1251a5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
# Changelog

v5 maintenance branch is on `v5_maintenance` after `5.2.0`
v5 maintenance branch is on `v5_maintenance` after `5.2.0`

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

## debouncer-full 0.4.0

- CHANGE: Manage root folder paths for the file ID cache automatically. **breaking**

```rust
debouncer.watcher().watch(path, RecursiveMode::Recursive)?;
debouncer.cache().add_root(path, RecursiveMode::Recursive);
```

becomes:

```rust
debouncer.watch(path, RecursiveMode::Recursive)?;
```

- CHANGE: Add `RecommendedCache`, which automatically enables the file ID cache on Windows and MacOS
and disables it on Linux, where it is not needed.

## debouncer-full 0.3.1 (2023-08-21)

- CHANGE: remove serde binary experiment opt-out after it got removed [#530]
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dev-dependencies]
notify = { version = "6.1.1", path = "../notify" }
notify-debouncer-mini = { version = "0.4.1", path = "../notify-debouncer-mini" }
notify-debouncer-full = { version = "0.3.1", path = "../notify-debouncer-full" }
notify-debouncer-full = { version = "0.4.0", path = "../notify-debouncer-full" }
futures = "0.3"
tempfile = "3.5.0"
log = "0.4.17"
Expand Down Expand Up @@ -56,4 +56,4 @@ path = "pollwatcher_manual.rs"
# specifically in its own sub folder
# to prevent cargo audit from complaining
#[[example]]
#name = "hot_reload_tide"
#name = "hot_reload_tide"
2 changes: 1 addition & 1 deletion notify-debouncer-full/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notify-debouncer-full"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
rust-version = "1.63"
description = "notify event debouncer optimized for ease of use"
Expand Down

0 comments on commit a1251a5

Please sign in to comment.