Skip to content

Commit

Permalink
Bump version to 3.0.9.0 (#84)
Browse files Browse the repository at this point in the history
* Bump version to 3.0.9.0

* Update packages

* Revert "Update packages"

This reverts commit baed5fc.
  • Loading branch information
adiletelf authored Mar 6, 2024
1 parent a83ac22 commit 0f0be76
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.0.9.0
* Bump version

## 3.0.8.0
* Fix colors in high contrast mode for legend and axis

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "powerbi-visuals-streamgraph",
"version": "3.0.8.0",
"version": "3.0.9.0",
"description": "A stacked area chart with smooth interpolation. Often used to display values over time.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions pbiviz.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"visual": {
"name": "StreamGraph",
"displayName": "Stream Graph 3.0.8.0",
"displayName": "Stream Graph 3.0.9.0",
"guid": "StreamGraph1446659696222",
"visualClassName": "StreamGraph",
"version": "3.0.8.0",
"version": "3.0.9.0",
"description": "A stacked area chart with smooth interpolation. Often used to display values over time.",
"supportUrl": "https://aka.ms/customvisualscommunity",
"gitHubUrl": "https://github.com/Microsoft/powerbi-visuals-streamgraph"
Expand Down
2 changes: 1 addition & 1 deletion test/visualTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe("StreamGraph", () => {

const dataPointsContainer = document.querySelector(".streamGraph .dataPointsContainer");
const paths = dataPointsContainer!.querySelectorAll("path");
paths.forEach(function (element, index) {
paths.forEach(function (element) {
let nanLocation = element.getAttribute("d")!.indexOf("NaN");
expect(nanLocation).toBe(-1);
});
Expand Down

0 comments on commit 0f0be76

Please sign in to comment.