Skip to content

Commit 0f9a5a2

Browse files
authored
Merge pull request #462 from vizzuhq/release-0.9.3
Set version to 0.9.3
2 parents 3af4fdc + e8b09e2 commit 0f9a5a2

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.9.3] - 2023-12-20
6+
57
### Fixed
68

9+
- Orientation and channel min/max cannot be null, only auto
710
- Corrected listing of Type-fest dependency from development to normal.
811
- Added missing `cvizzu.d.ts` and `cvizzu.types.d.ts` to the npm package.
912
- Logo positioning issue in charts when only the logo is rendered and the chart is resized.
@@ -23,7 +26,6 @@
2326
- Fixed redraw on browser zoom (bug since 0.9.0).
2427
- Fixed clearing of the canvas before rendering when devicePixelRatio is not 1.
2528
- TypeScript definition fixed, measures can contain null values.
26-
- Orientation and channel min/max cannot be null, only auto
2729

2830
### Added
2931

package.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"./*.json": "./*.json"
1414
},
1515
"files": [
16-
"CHANGELOG.md",
1716
"LICENSE",
1817
"package.json",
1918
"README.md",
@@ -58,14 +57,16 @@
5857
"format:tools": "npm-run-all format-tools:*",
5958
"format-tools:js": "npx prettier -c tools/ci tools/docs .eslintrc.cjs .puppeteerrc.cjs .github",
6059
"format-tools:py": "./tools/ci/run/format-black-py.sh --diff --check tools",
60+
"format-showcases": "npx prettier -c vizzu-lib-doc/docs vizzu-lib-doc/.github",
6161
"lint": "npm-run-all lint:*",
6262
"lint:src": "npm-run-all lint-src:*",
63-
"lint-src:js": "npx eslint --ext .js,.cjs,.mjs,.ts --config .eslintrc.cjs src test",
63+
"lint-src:js": "npx eslint --config .eslintrc.cjs src test",
6464
"lint:docs": "npm-run-all lint-docs:*",
65-
"lint-docs:js": "npx eslint --ext .js,.cjs,.mjs --config .eslintrc.cjs docs",
65+
"lint-docs:js": "npx eslint --config .eslintrc.cjs docs",
6666
"lint:tools": "npm-run-all lint-tools:*",
67-
"lint-tools:js": "npx eslint --ext .js,.cjs,.mjs --config .eslintrc.cjs tools/ci tools/docs .eslintrc.cjs",
67+
"lint-tools:js": "npx eslint --config .eslintrc.cjs tools/ci tools/docs .eslintrc.cjs",
6868
"lint-tools:py": "./tools/ci/run/lint-pylint-py.sh tools",
69+
"lint-showcases": "npx eslint --config .eslintrc.cjs vizzu-lib-doc/docs",
6970
"type": "npm-run-all type:*",
7071
"type:src": "npm-run-all type-src:*",
7172
"type-src:js": "npx check-dts ./test/dts/vizzu.d.ts",
@@ -95,13 +96,15 @@
9596
"fix-format:tools": "npm-run-all fix-format-tools:*",
9697
"fix-format-tools:js": "npx prettier -w tools/ci tools/docs .eslintrc.cjs .puppeteerrc.cjs .github",
9798
"fix-format-tools:py": "./tools/ci/run/format-black-py.sh tools",
99+
"fix-format-showcases": "npx prettier -w vizzu-lib-doc/docs vizzu-lib-doc/.github",
98100
"fix-lint": "npm-run-all fix-lint:*",
99101
"fix-lint:src": "npm-run-all fix-lint-src:*",
100-
"fix-lint-src:js": "npx eslint --fix --ext .js,.cjs,.mjs --config .eslintrc.cjs src test",
102+
"fix-lint-src:js": "npx eslint --fix --config .eslintrc.cjs src test",
101103
"fix-lint:docs": "npm-run-all fix-lint-docs:*",
102-
"fix-lint-docs:js": "npx eslint --fix --ext .js,.cjs,.mjs --config .eslintrc.cjs docs",
104+
"fix-lint-docs:js": "npx eslint --fix --config .eslintrc.cjs docs",
103105
"fix-lint:tools": "npm-run-all fix-lint-tools:*",
104-
"fix-lint-tools:js": "npx eslint --fix --ext .js,.cjs,.mjs --config .eslintrc.cjs tools/ci tools/docs .eslintrc.cjs",
106+
"fix-lint-tools:js": "npx eslint --fix --config .eslintrc.cjs tools/ci tools/docs .eslintrc.cjs",
107+
"fix-lint-showcases": "npx eslint --fix --config .eslintrc.cjs vizzu-lib-doc/docs",
105108
"gen-thumbnail": "./tools/ci/run/docs-gen-thumbnail.sh",
106109
"gen-thumbnail-gsutil": "./tools/ci/run/docs-gen-thumbnail-gsutil.sh",
107110
"build-docs": "./tools/ci/run/docs-build.sh",

src/chart/main/version.cpp

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

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

55
const char *const Vizzu::Main::siteUrl = "https://vizzuhq.com/";

test/e2e/test_cases/test_cases.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@
299299
"refs": ["b61766f"]
300300
},
301301
"operations/orientation_tutorial_data/line_orientation": {
302-
"refs": ["6e4f82e"]
302+
"refs": ["e90c2a0"]
303303
},
304304
"operations/orientation_tutorial_data/rectangle_orientation": {
305305
"refs": ["5af7144"]

tools/ci/run/test-gsutil.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
SHORT_SHA="$1"
4-
npm test -- --vizzu /dist/vizzu.min.js --hashes ALL --maxFailedImages 100 || TEST_FAILED=true
4+
npm test -- --vizzu /dist/vizzu.min.js --Werror sameref --hashes ALL --maxFailedImages 100 || TEST_FAILED=true
55
tar -czvf test/e2e/test_report.tgz test/e2e/test_report/ || TGZ_FAILED=true
66
gsutil cp "test/e2e/test_report.tgz" "gs://vizzu-lib-main-sha/lib-$SHORT_SHA/test_report.tgz" || GSUTIL_FAILED=true
77
if [ "$TEST_FAILED" == "true" ] || [ "$TGZ_FAILED" == "true" ] || [ "$GSUTIL_FAILED" == "true" ]; then

0 commit comments

Comments
 (0)