From 0a8332d9b82985eb484dd882c1b09331840bb709 Mon Sep 17 00:00:00 2001 From: David Dias Date: Tue, 15 May 2018 10:28:51 +0100 Subject: [PATCH 1/3] chore: bump dns test timeout --- js/src/miscellaneous.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/js/src/miscellaneous.js b/js/src/miscellaneous.js index 748dfc355..abe804b59 100644 --- a/js/src/miscellaneous.js +++ b/js/src/miscellaneous.js @@ -55,7 +55,9 @@ module.exports = (common) => { }) }) - it('.dns', (done) => { + it('.dns', function (done) { + this.timeout(20 * 1000) + ipfs.dns('ipfs.io', (err, path) => { expect(err).to.not.exist() expect(path).to.exist() @@ -80,13 +82,6 @@ module.exports = (common) => { }) }) - it('.dns Promises support', () => { - return ipfs.dns('ipfs.io') - .then((res) => { - expect(res).to.exist() - }) - }) - // must be last test to run it('.stop', function (done) { this.timeout(10 * 1000) From d2875e49b09399772ce493abe53f8282361fd614 Mon Sep 17 00:00:00 2001 From: David Dias Date: Tue, 15 May 2018 10:29:00 +0100 Subject: [PATCH 2/3] chore: update contributors From c3342f94379ac8a440b108cf3a274d357d538ccf Mon Sep 17 00:00:00 2001 From: David Dias Date: Tue, 15 May 2018 10:29:00 +0100 Subject: [PATCH 3/3] chore: release version v0.65.6 --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdf079c2e..a90521d59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ + +## [0.65.6](https://github.com/ipfs/interface-ipfs-core/compare/v0.65.5...v0.65.6) (2018-05-15) + + + ## [0.65.5](https://github.com/ipfs/interface-ipfs-core/compare/v0.65.4...v0.65.5) (2018-05-12) diff --git a/package.json b/package.json index cb271da5b..709761aed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "interface-ipfs-core", - "version": "0.65.5", + "version": "0.65.6", "description": "A test suite and interface you can use to implement a IPFS core interface.", "leadMaintainer": "Alan Shaw ", "main": "js/src/index.js",