diff --git a/CHANGELOG.md b/CHANGELOG.md index 965b5ba..2bd785c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ +0.14.0 / 2015-01-05 +------------------- +- changed `copy`/`copySync` from `fs.copy(src, dest, [filters], callback)` to `fs.copy(src, dest, [options], callback)` https://github.com/jprichardson/node-fs-extra/pull/100 +- removed mockfs tests for mkdirp (this may be temporary, but was getting in the way of other tests) + 0.13.0 / 2014-12-10 ------------------- -- removed `touch` and `touchSync` methods +- removed `touch` and `touchSync` methods (they didn't handle permissions like UNIX touch) - updated `"ncp": "^0.6.0"` to `"ncp": "^1.0.1"` - imported `mkdirp` => `minimist` and `mkdirp` are no longer dependences, should now appease people who wanted `mkdirp` to be `--use_strict` safe. See [#59](https://github.com/jprichardson/node-fs-extra/issues/59) diff --git a/package.json b/package.json index 025c309..b20e67b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fs-extra", - "version": "0.13.0", + "version": "0.14.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.", "homepage": "https://github.com/jprichardson/node-fs-extra", "repository": {