diff --git a/CHANGELOG.md b/CHANGELOG.md index 744f8dd6..021add49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +11.3.0 / 2025-01-15 +------------------- + +- Add promise support for newer `fs` methods ([#1044](https://github.com/jprichardson/node-fs-extra/issues/1044), [#1045](https://github.com/jprichardson/node-fs-extra/pull/1045)) +- Use `fs.opendir` in `copy()`/`copySync()` for better perf/scalability ([#972](https://github.com/jprichardson/node-fs-extra/issues/972), [#1028](https://github.com/jprichardson/node-fs-extra/pull/1028)) + 11.2.0 / 2023-11-27 ------------------- diff --git a/package.json b/package.json index f3f6ba3a..b31d313a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fs-extra", - "version": "11.2.0", + "version": "11.3.0", "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.", "engines": { "node": ">=14.14"