From 5df855c0e396c152ffd9a6c9661bc2ecfc44a432 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Wed, 27 Jun 2018 23:37:15 +0100 Subject: [PATCH 1/3] fix: allow null skip for subsystems License: MIT Signed-off-by: Alan Shaw --- js/src/utils/mocha.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/utils/mocha.js b/js/src/utils/mocha.js index 80c51d062..951e997a8 100644 --- a/js/src/utils/mocha.js +++ b/js/src/utils/mocha.js @@ -16,7 +16,7 @@ function getDescribe (config) { if (config.only === true) return describe.only if (config.skip === true) return describe.skip - if (typeof config.skip === 'object' && config.skip.reason) { + if (config.skip && typeof config.skip === 'object' && config.skip.reason) { const _describe = (name, impl) => { describe.skip(`${name} (${config.skip.reason})`, impl) } From 4db514c178e2f57436bc8cdec33d83d95d6b8f88 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Wed, 27 Jun 2018 23:38:30 +0100 Subject: [PATCH 2/3] chore: update contributors From 0a3f5f2938e8b2143b7e57e3d83b984b28edddce Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Wed, 27 Jun 2018 23:38:31 +0100 Subject: [PATCH 3/3] chore: release version v0.70.1 --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 646ef91f3..db9f606f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## [0.70.1](https://github.com/ipfs/interface-ipfs-core/compare/v0.70.0...v0.70.1) (2018-06-27) + + +### Bug Fixes + +* allow null skip for subsystems ([5df855c](https://github.com/ipfs/interface-ipfs-core/commit/5df855c)) + + + # [0.70.0](https://github.com/ipfs/interface-ipfs-core/compare/v0.69.1...v0.70.0) (2018-06-27) diff --git a/package.json b/package.json index ad3af0283..716f876be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "interface-ipfs-core", - "version": "0.70.0", + "version": "0.70.1", "description": "A test suite and interface you can use to implement a IPFS core interface.", "leadMaintainer": "Alan Shaw ", "main": "js/src/index.js",