From 2545ddd3dd6cdc46a3aef340cd26cf23460a4708 Mon Sep 17 00:00:00 2001 From: David Dias Date: Mon, 23 Apr 2018 17:27:23 +0200 Subject: [PATCH 1/3] fix: this.skip needs to be under a function declaration --- js/src/files.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/src/files.js b/js/src/files.js index 9049ef22..f47ffac1 100644 --- a/js/src/files.js +++ b/js/src/files.js @@ -559,7 +559,7 @@ module.exports = (common) => { }) }) - it('exports a chunk of a file', (done) => { + it('exports a chunk of a file', function (done) { if (withGo) { this.skip() } const offset = 1 @@ -589,7 +589,7 @@ module.exports = (common) => { })) }) - it('exports a chunk of a file in a ReadableStream', (done) => { + it('exports a chunk of a file in a ReadableStream', function (done) { if (withGo) { this.skip() } const offset = 1 @@ -625,7 +625,7 @@ module.exports = (common) => { ) }) - it('exports a chunk of a file in a PullStream', (done) => { + it('exports a chunk of a file in a PullStream', function (done) { if (withGo) { this.skip() } const offset = 1 From fba6e277ef5769945abcd99230c2129ccc6e01c7 Mon Sep 17 00:00:00 2001 From: David Dias Date: Mon, 23 Apr 2018 17:27:32 +0200 Subject: [PATCH 2/3] chore: update contributors From 1b300c84fbfc8c0746901eb8a340ae4b4cb32722 Mon Sep 17 00:00:00 2001 From: David Dias Date: Mon, 23 Apr 2018 17:27:32 +0200 Subject: [PATCH 3/3] chore: release version v0.64.1 --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f5d9235..4660a94c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## [0.64.1](https://github.com/ipfs/interface-ipfs-core/compare/v0.64.0...v0.64.1) (2018-04-23) + + +### Bug Fixes + +* this.skip needs to be under a function declaration ([2545ddd](https://github.com/ipfs/interface-ipfs-core/commit/2545ddd)) + + + # [0.64.0](https://github.com/ipfs/interface-ipfs-core/compare/v0.62.0...v0.64.0) (2018-04-23) diff --git a/package.json b/package.json index 2e82ed18..baf16409 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "interface-ipfs-core", - "version": "0.64.0", + "version": "0.64.1", "description": "A test suite and interface you can use to implement a IPFS core interface.", "main": "js/src/index.js", "scripts": {