]> go.fuhry.dev Git - fsnotify.git/commitdiff
Update changelog, README
authorMartin Tournoij <martin@arp242.net>
Thu, 13 Oct 2022 01:27:31 +0000 (03:27 +0200)
committerMartin Tournoij <martin@arp242.net>
Thu, 13 Oct 2022 01:27:31 +0000 (03:27 +0200)
CHANGELOG.md
README.md
backend_fen.go

index 77f9593bd582e27c30f54e0366684e9dc8e07a31..28550f6ee0d688bbfb383a689d865489f7de36df 100644 (file)
@@ -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
 
index 2f5f4fd01ab150a02a39d87f8a92efd12c3d6710..bd2f76fa9fe78844c774c325e8e04fc588ca2ee7 100644 (file)
--- 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)      |
index d84a1e326b11533abc57e073a8783684f4253417..0d87631df88a191022cfe9530a41893b5c1a32a2 100644 (file)
@@ -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()