Skip to content

Commit

Permalink
update sdk version to v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
nfukuzaki committed May 1, 2020
1 parent 094234e commit fb00c0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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": [
Expand Down
2 changes: 1 addition & 1 deletion src/ThingIFSDKInfo.ts
@@ -1,3 +1,3 @@
export function getSDKVersion(): string {
return "1.0.5";
return "1.0.6";
}
2 changes: 1 addition & 1 deletion test/small/utils/TestUtil.ts
Expand Up @@ -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';
}

0 comments on commit fb00c0b

Please sign in to comment.