Skip to content

Commit e28fab1

Browse files
authored
Merge pull request #60 from vizzuhq/0.4.2-RC
0.4.2 rc
2 parents 2f56874 + 4c8b341 commit e28fab1

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
## [Unreleased]
44

5-
## [0.4.1] - 2021-12-22
5+
## [0.4.2] - 2021-12-22
66

77
### Fixed
88

99
- Fixed error on chart.animate({ style: null })
1010

11+
## [0.4.1] - 2021-12-22 - deprecated
12+
1113
## [0.4.0] - 2021-12-21
1214

1315
### Added

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].1/dist/vizzu.min.js';
20+
'https://cdn.jsdelivr.net/npm/[email protected].2/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
@@ -66,7 +66,7 @@ class Example
6666
+ '</pre>';
6767
scriptElement.innerHTML += `
6868
<script type="module">
69-
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].1/dist/vizzu.min.js';
69+
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].2/dist/vizzu.min.js';
7070
${this.imports}
7171
7272
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].1/dist/vizzu.min.js';
1+
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].2/dist/vizzu.min.js';
22
//import Vizzu from '/example/lib/vizzu.js';
33
import getBase from './base.js';
44
import data from './data.js'

src/apps/weblib/js-api/vizzu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export default class Vizzu {
227227
if (obj.id) {
228228
this.restore(obj);
229229
} else {
230-
if (!obj.data && !obj.style && !obj.config) {
230+
if (!obj.data && obj.style === undefined && !obj.config) {
231231
obj = { config: obj };
232232
}
233233

src/chart/main/version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#include "version.h"
22

3-
const App::Version Vizzu::Main::version(0, 4, 1);
3+
const App::Version Vizzu::Main::version(0, 4, 2);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class VizzuVersion {
5050
"0.3.2",
5151
"0.3.3",
5252
"0.4.0",
53-
"0.4.1"
53+
"0.4.2"
5454
];
5555
publicBetaList.slice().reverse().forEach((version, index) => {
5656
publicBetaList[index] = {num: version, url: VizzuUrl.getRemoteCdn() + "@" + version + "/dist/vizzu.min.js"};

0 commit comments

Comments
 (0)