Skip to content

Commit 9baa732

Browse files
committed
release 0.4.4
1 parent a984e68 commit 9baa732

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.4.4] - 2022-03-10
6+
57
### Fixed
68

79
- User friendly error when methods called on unitialized library.

docs/content/tutorial/0-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Import the library into a JavaScript file or script tag in your web page
1717
```html
1818
<script type="module">
1919
import Vizzu from
20-
'https://cdn.jsdelivr.net/npm/[email protected].3/dist/vizzu.min.js';
20+
'https://cdn.jsdelivr.net/npm/vizzu@~0.4.0/dist/vizzu.min.js';
2121
</script>
2222
```
2323

docs/generator/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class Example
8282
+ '</pre>';
8383
scriptElement.innerHTML += `
8484
<script type="module">
85-
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].3/dist/vizzu.min.js';
85+
import Vizzu from 'https://cdn.jsdelivr.net/npm/vizzu@~0.4.0/dist/vizzu.min.js';
8686
${this.imports}
8787
8888
let chart = new Vizzu('vizzuCanvas');

docs/script/tutorial/vizzu-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].3/dist/vizzu.min.js';
1+
import Vizzu from 'https://cdn.jsdelivr.net/npm/vizzu@~0.4.0/dist/vizzu.min.js';
22
//import Vizzu from '/example/lib/vizzu.js';
33
import getBase from './base.js';
44
import data from './data.js'

test/integration/modules/vizzu/vizzu-version.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ class VizzuVersion {
5151
"0.3.3",
5252
"0.4.0",
5353
"0.4.2",
54-
"0.4.3"
54+
"0.4.3",
55+
"0.4.4"
5556
];
5657
publicBetaList.slice().reverse().forEach((version, index) => {
5758
publicBetaList[index] = {num: version, url: VizzuUrl.getRemoteCdn() + "@" + version + "/dist/vizzu.min.js"};

0 commit comments

Comments
 (0)