diff --git a/package.json b/package.json index ace449d..ca3ea2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "thing-if", - "version": "1.0.5", + "version": "1.0.6", "description": "Javascript SDK for Kii Thing Interaction Framework.", "main": "lib/ThingIFSDK.js", "files": [ diff --git a/src/ThingIFSDKInfo.ts b/src/ThingIFSDKInfo.ts index 6651c37..7995178 100644 --- a/src/ThingIFSDKInfo.ts +++ b/src/ThingIFSDKInfo.ts @@ -1,3 +1,3 @@ export function getSDKVersion(): string { - return "1.0.5"; + return "1.0.6"; } \ No newline at end of file diff --git a/test/small/utils/TestUtil.ts b/test/small/utils/TestUtil.ts index 8fe6671..677f447 100644 --- a/test/small/utils/TestUtil.ts +++ b/test/small/utils/TestUtil.ts @@ -2,5 +2,5 @@ export function sameDate(date1: Date, date2: Date): boolean{ return Math.abs(date1.getTime()-date2.getTime()) < 10; } export function sdkVersion(): string { - return '1.0.5'; + return '1.0.6'; } \ No newline at end of file