Skip to content

Commit 3a3c20b

Browse files
committed
0.3.3 release - changelog and version number update.
1 parent 75da4e7 commit 3a3c20b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.3.3] - 2021-10-17
6+
7+
### Fixed
8+
9+
- NPM package and d.ts file fixed for TypeScript projects.
10+
511
## [0.3.2] - 2021-10-15
612

713
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Or use it from CDN:
3838

3939
```html
4040
<script type="module">
41-
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].2/dist/vizzu.min.js';
41+
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].3/dist/vizzu.min.js';
4242
</script>
4343
```
4444

@@ -53,7 +53,7 @@ Create a placeholder element that will contain the rendered chart:
5353
Create a simple bar chart:
5454

5555
```javascript
56-
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].2/dist/vizzu.min.js';
56+
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected].3/dist/vizzu.min.js';
5757

5858
let data = {
5959
series: [

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, 3, 2);
3+
const App::Version Vizzu::Main::version(0, 3, 3);

0 commit comments

Comments
 (0)