diff --git a/CHANGELOG.md b/CHANGELOG.md index a2aaf3c..a3e2202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.6.0 +* UPD: powerbi-visuals-tools has been updated to 1.11.0 to support Bookmarks +* UPD: API has been updated to 1.11.0 to support Bookmarks +* UPD: powerbi-visuals-utils-interactivityutils has been updated to 3.1.0 to support Bookmarks +* UPD: powerbi-visuals-utils-testutils has been updated to "1.2.0" to support Bookmarks + ## 1.5.2 * Fixed bug when not 0 minimum value calculated as 0 diff --git a/package.json b/package.json index 60e0a96..2a68c69 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,27 @@ { "name": "powerbi-visuals-bulletchart", "description": "Bullet chart", - "version": "1.5.2", + "version": "1.6.0", "author": { "name": "Microsoft", "email": "pbicvsupport@microsoft.com" }, "scripts": { - "postinstall": "pbiviz update 1.7.0", + "postinstall": "pbiviz update 1.11.0", "pbiviz": "pbiviz", "start": "pbiviz start", "package": "pbiviz package", "lint": "node node_modules/tslint/bin/tslint -r \"node_modules/tslint-microsoft-contrib\" \"+(src|test)/**/*.ts\"", "pretest": "pbiviz package --resources --no-minify --no-pbiviz --no-plugin", - "test": "karma start" + "test": "karma start", + "cert": "pbiviz --create-cert" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Microsoft/PowerBI-visuals-bulletchart.git" }, - "devDependencies": { + "devDependencies": { "@types/d3": "3.5.36", "@types/jasmine": "^2.5.37", "@types/jasmine-jquery": "^1.5.28", @@ -41,12 +42,14 @@ "karma-typescript-preprocessor": "0.3.0", "lodash": "4.16.2", "moment": "2.15.1", + "powerbi-models": "^1.0.2", "powerbi-visuals-utils-chartutils": "^1.2.0", "powerbi-visuals-utils-dataviewutils": "^1.2.0", - "powerbi-visuals-tools": "1.7.0", - "powerbi-visuals-utils-testutils": "^0.2.2", + "powerbi-visuals-tools": "1.11.0", + "powerbi-visuals-utils-testutils": "1.2.0", "powerbi-visuals-utils-tooltiputils": "^1.0.0", "powerbi-visuals-utils-formattingutils": "^2.1.0", + "powerbi-visuals-utils-interactivityutils": "3.1.0", "tslint": "^5.1.2", "tslint-microsoft-contrib": "^5.0.0", "typescript": "2.1.4" diff --git a/pbiviz.json b/pbiviz.json index 53d5a38..47b3a4c 100644 --- a/pbiviz.json +++ b/pbiviz.json @@ -4,12 +4,12 @@ "displayName": "Bullet Chart", "guid": "BulletChart1443347686880", "visualClassName": "BulletChart", - "version": "1.5.2", + "version": "1.6.0", "description": "A bullet chart that includes four orientations and a few customization options. Use to feature a single measure against a qualitative range.", "supportUrl": "http://community.powerbi.com", "gitHubUrl": "https://github.com/Microsoft/powerbi-visuals-bulletchart" }, - "apiVersion": "1.7.0", + "apiVersion": "1.11.0", "author": { "name": "Microsoft", "email": "pbicvsupport@microsoft.com" diff --git a/test/_references.ts b/test/_references.ts index 948d308..cc277b9 100644 --- a/test/_references.ts +++ b/test/_references.ts @@ -30,7 +30,7 @@ /// // Power BI API -/// +/// // Power BI Extensibility /// diff --git a/tsconfig.json b/tsconfig.json index 04bdec2..1538cca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ "declaration": true }, "files": [ - ".api/v1.7.0/PowerBI-visuals.d.ts", + ".api/v1.11.0/PowerBI-visuals.d.ts", "node_modules/powerbi-visuals-utils-formattingutils/lib/index.d.ts", "node_modules/powerbi-visuals-utils-interactivityutils/lib/index.d.ts", "node_modules/powerbi-visuals-utils-typeutils/lib/index.d.ts", @@ -18,6 +18,7 @@ "node_modules/powerbi-visuals-utils-chartutils/lib/index.d.ts", "node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts", "node_modules/powerbi-visuals-utils-tooltiputils/lib/index.d.ts", + "node_modules/powerbi-models/dist/models-noexports.d.ts", "src/dataInterfaces.ts", "src/settings.ts", "src/columns.ts",