From a7f303b9b7c90e351065aa1c1044e23aad989528 Mon Sep 17 00:00:00 2001 From: Ryan Zimmerman Date: Sat, 11 May 2019 10:32:46 -0400 Subject: [PATCH] 8.0.0 --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c787139..0c62c91c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +8.0.0 / 2019-05-11 +------------------ + +**NOTE:** Node.js v6 support is depreciated, and will be dropped in the next major release. + +- Use `renameSync()` under the hood in `moveSync()` +- Fix bug with bind-mounted directories in `copy*()` ([#613](https://github.com/jprichardson/node-fs-extra/issues/613), [#618](https://github.com/jprichardson/node-fs-extra/pull/618)) +- Fix bug in `move()` with case-insensitive file systems +- Use `fs.stat()`'s `bigint` option in `copy*()` & `move*()` where possible ([#657](https://github.com/jprichardson/node-fs-extra/issues/657)) + 7.0.1 / 2018-11-07 ------------------ diff --git a/package.json b/package.json index c584ce30..83b13e31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fs-extra", - "version": "7.0.1", + "version": "8.0.0", "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", "engines": { "node": ">=6 <7 || >=8"