diff --git a/README.md b/README.md index a2fffadb..a43e0cd5 100644 --- a/README.md +++ b/README.md @@ -281,7 +281,7 @@ execute a command on each change, or get a stdio stream of change events. For more detailed changelog, see [`full_changelog.md`](.github/full_changelog.md). -- **v3.2 (Oct 1, 2019):** Improve Linux RAM usage by 50%. Stability optimizations. Windows glob fixes. +- **v3.2 (Oct 1, 2019):** Improve Linux RAM usage by 50%. Stability optimizations. Race condition fixes. Windows glob fixes. - **v3.1 (Sep 16, 2019):** dotfiles are no longer filtered out by default. Use `ignored` option if needed. Improve initial Linux scan time by 50%. - **v3 (Apr 30, 2019):** massive CPU & RAM consumption improvements; reduces deps / package size by a factor of 17x and bumps Node.js requirement to v8.16 and higher. - **v2 (Dec 29, 2017):** Globs are now posix-style-only; without windows support. Tons of bugfixes. diff --git a/package.json b/package.json index f3870df8..d054d742 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "chokidar", "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", - "version": "3.2.0", + "version": "3.2.1", "homepage": "https://github.com/paulmillr/chokidar", "author": "Paul Miller (https://paulmillr.com)", "contributors": [ @@ -9,7 +9,7 @@ "Elan Shanker" ], "engines": { - "node": ">= 8.16" + "node": ">= 8" }, "dependencies": { "anymatch": "~3.1.1",