From b5d7e400e6974d86f74a392e5f3dbd4e9f111ff5 Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Thu, 13 Oct 2022 03:27:31 +0200 Subject: [PATCH] Update changelog, README --- CHANGELOG.md | 6 +++++- README.md | 2 +- backend_fen.go | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) 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() -- 2.50.1