OLD | NEW |
| 1 # 0.9.7 |
| 2 |
| 3 * Fix a bug in `FileWatcher` where events could be added after watchers were |
| 4 closed. |
| 5 |
1 # 0.9.6 | 6 # 0.9.6 |
2 | 7 |
3 * Add a `Watcher` interface that encompasses watching both files and | 8 * Add a `Watcher` interface that encompasses watching both files and |
4 directories. | 9 directories. |
5 | 10 |
6 * Add `FileWatcher` and `PollingFileWatcher` classes for watching changes to | 11 * Add `FileWatcher` and `PollingFileWatcher` classes for watching changes to |
7 individual files. | 12 individual files. |
8 | 13 |
9 * Deprecate `DirectoryWatcher.directory`. Use `DirectoryWatcher.path` instead. | 14 * Deprecate `DirectoryWatcher.directory`. Use `DirectoryWatcher.path` instead. |
10 | 15 |
11 # 0.9.5 | 16 # 0.9.5 |
12 | 17 |
13 * Fix bugs where events could be added after watchers were closed. | 18 * Fix bugs where events could be added after watchers were closed. |
14 | 19 |
15 # 0.9.4 | 20 # 0.9.4 |
16 | 21 |
17 * Treat add events for known files as modifications instead of discarding them | 22 * Treat add events for known files as modifications instead of discarding them |
18 on Mac OS. | 23 on Mac OS. |
19 | 24 |
20 # 0.9.3 | 25 # 0.9.3 |
21 | 26 |
22 * Improved support for Windows via `WindowsDirectoryWatcher`. | 27 * Improved support for Windows via `WindowsDirectoryWatcher`. |
23 | 28 |
24 * Simplified `PollingDirectoryWatcher`. | 29 * Simplified `PollingDirectoryWatcher`. |
25 | 30 |
26 * Fixed bugs in `MacOSDirectoryWatcher` | 31 * Fixed bugs in `MacOSDirectoryWatcher` |
OLD | NEW |