Skip to content

Commit

Permalink
Update changelog, README
Browse files Browse the repository at this point in the history
  • Loading branch information
arp242 committed Oct 13, 2022
1 parent 2b19046 commit b5d7e40
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
Expand Down
2 changes: 1 addition & 1 deletion backend_fen.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit b5d7e40

Please sign in to comment.