diff --git a/Changelog.md b/Changelog.md index bf04957..5bbae88 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,12 @@ # Changelog +## 0.6.1 + +* Add TypeScript support. +* Fix race condition of `fs.exists` and `fs.stat`. +* Prevent redundant events on Windows when creating file/directory. + + ## 0.6.0 Special thanks to [Timo Tijhof](https://github.com/Krinkle) diff --git a/README.md b/README.md index 8a2f47a..a8827d6 100644 --- a/README.md +++ b/README.md @@ -132,9 +132,6 @@ watcher.isClosed() ## Known issues -**Windows** - * Will output its parent directory when a new file/directory is created in a deep directory. - **Windows, node < v4.2.5** * Failed to detect `remove` event diff --git a/package.json b/package.json index 1283852..81a5343 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "watch", "watchfile" ], - "version": "0.6.0", + "version": "0.6.1", "bugs": { "url": "https://github.com/yuanchuan/node-watch/issues" },