diff --git a/CHANGELOG.md b/CHANGELOG.md index 5208c63ca..6eabcc53b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## [0.74.1](https://github.com/ipfs/interface-ipfs-core/compare/v0.74.0...v0.74.1) (2018-08-06) + + +### Bug Fixes + +* give more time for teardown after resolve ([#345](https://github.com/ipfs/interface-ipfs-core/issues/345)) ([1db498f](https://github.com/ipfs/interface-ipfs-core/commit/1db498f)) + + + # [0.74.0](https://github.com/ipfs/interface-ipfs-core/compare/v0.73.0...v0.74.0) (2018-08-02) diff --git a/SPEC/FILES.md b/SPEC/FILES.md index dcf8e30e6..d34b3cb20 100644 --- a/SPEC/FILES.md +++ b/SPEC/FILES.md @@ -985,7 +985,7 @@ Where: - `callback` is an optional function with the signature `function (error, files) {}`, where `error` may be an Error that occured if the operation was not successful and `files` is an array containing Objects that contain the following keys: - `name` which is the file's name -- `type` which i the object's type (`directory` or `file`) +- `type` which is the object's type (`directory` or `file`) - `size` the size of the file in bytes - `hash` the hash of the file diff --git a/js/src/miscellaneous/resolve.js b/js/src/miscellaneous/resolve.js index f9a0f3c9b..c8802f8ef 100644 --- a/js/src/miscellaneous/resolve.js +++ b/js/src/miscellaneous/resolve.js @@ -29,7 +29,8 @@ module.exports = (createCommon, options) => { }) }) - after((done) => { + after(function (done) { + this.timeout(10 * 1000) common.teardown(done) }) diff --git a/package.json b/package.json index 0965155af..8a35d0c81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "interface-ipfs-core", - "version": "0.74.0", + "version": "0.74.1", "description": "A test suite and interface you can use to implement a IPFS core interface.", "leadMaintainer": "Alan Shaw ", "main": "js/src/index.js",