From: Martin Tournoij Date: Thu, 13 Oct 2022 01:27:31 +0000 (+0200) Subject: Update changelog, README X-Git-Tag: v1.7.2~53 X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=b5d7e400e6974d86f74a392e5f3dbd4e9f111ff5;p=fsnotify.git Update changelog, README --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 77f9593..28550f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -Nothing yet. +### Additions + +- Add FEN backend to support illumos and Solaris. ([#371]) + +[#371]: https://github.com/fsnotify/fsnotify/pull/371 ## [1.6.0] - 2022-10-13 diff --git a/README.md b/README.md index 2f5f4fd..bd2f76f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Platform support: | inotify | Linux 2.6.32+ | Supported | | kqueue | BSD, macOS | Supported | | ReadDirectoryChangesW | Windows | Supported | -| FEN | illumos | Supported | +| FEN | illumos | Supported in main branch | | FSEvents | macOS | [Planned](https://github.com/fsnotify/fsnotify/issues/11) | | fanotify | Linux 5.9+ | [Maybe](https://github.com/fsnotify/fsnotify/issues/114) | | USN Journals | Windows | [Maybe](https://github.com/fsnotify/fsnotify/issues/53) | diff --git a/backend_fen.go b/backend_fen.go index d84a1e3..0d87631 100644 --- a/backend_fen.go +++ b/backend_fen.go @@ -569,7 +569,7 @@ func (w *Watcher) dissociateFile(path string, stat os.FileInfo, unused bool) err return w.port.DissociatePath(path) } -// WatchList returns all paths added with Add() (and are not yet removed). +// WatchList returns all paths added with [Add] (and are not yet removed). func (w *Watcher) WatchList() []string { w.mu.Lock() defer w.mu.Unlock()