Skip to content

Commit 83927ca

Browse files
authored
Merge pull request #505 from vizzuhq/release-0.10.0
Set version to 0.10.0
2 parents b63f15c + fac49d6 commit 83927ca

File tree

16 files changed

+218
-218
lines changed

16 files changed

+218
-218
lines changed

.github/workflows/docker-vizzu-dev-desktop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: Build and Publish
2525
run: |
2626
IMAGE="vizzu-dev-desktop"
27-
IMAGE_NAME="vizzu/$IMAGE:0.9"
27+
IMAGE_NAME="vizzu/$IMAGE:0.10"
2828
docker build -t $IMAGE_NAME -f tools/ci/docker/$IMAGE .
2929
docker push $IMAGE_NAME

.github/workflows/docker-vizzu-dev-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: Build and Publish
2525
run: |
2626
IMAGE="vizzu-dev-wasm"
27-
IMAGE_NAME="vizzu/$IMAGE:0.9"
27+
IMAGE_NAME="vizzu/$IMAGE:0.10"
2828
docker build -t $IMAGE_NAME -f tools/ci/docker/$IMAGE .
2929
docker push $IMAGE_NAME

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.10.0] - 2024-03-11
6+
57
### Fixed
68

79
- Json serializer control character escape fixed. Some unicode characters

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ docker run -i -t -v .:/workspace vizzu/vizzu-dev-desktop bash
7070
or you can use a specific version of the prebuilt image:
7171

7272
```sh
73-
docker run -i -t -v .:/workspace vizzu/vizzu-dev-desktop:0.9 bash
73+
docker run -i -t -v .:/workspace vizzu/vizzu-dev-desktop:0.10 bash
7474
```
7575

7676
Run the following commands to build and run the `WASM` version's development
@@ -84,7 +84,7 @@ docker run -i -t -v .:/workspace vizzu/vizzu-dev-wasm bash
8484
or you can use a specific version of the prebuilt image:
8585

8686
```sh
87-
docker run -i -t -v .:/workspace vizzu/vizzu-dev-wasm:0.9 bash
87+
docker run -i -t -v .:/workspace vizzu/vizzu-dev-wasm:0.10 bash
8888
```
8989

9090
### Building the project

docs/tutorial/align_range.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ the chart. For example, on a column chart, elements will be vertically centered,
1515
whereas on a bar chart, horizontally.
1616

1717
!!! info
18-
In the first example, the y-axis labels are hidden because they don't properly
19-
represent the values shown on the column chart anymore, as the chart elements
20-
float off the x-axis.
18+
In the first example, the y-axis labels are hidden because they don't
19+
properly represent the values shown on the column chart anymore, as the
20+
chart elements float off the x-axis.
2121

2222
<div id="tutorial_01"></div>
2323

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
??? info "Info - How to setup Vizzu" {% include-markdown
2-
"tutorial/assets/setup/init.md" %}
1+
??? info "Info - How to setup Vizzu"
2+
{% include-markdown "tutorial/assets/setup/init.md" %}
33

4-
```
5-
{% include-markdown "tutorial/assets/setup/config_a.md" %}
6-
```
4+
{% include-markdown "tutorial/assets/setup/config_a.md" %}
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
??? info "Info - How to setup Vizzu" {% include-markdown
2-
"tutorial/assets/setup/init.md" %}
1+
??? info "Info - How to setup Vizzu"
2+
{% include-markdown "tutorial/assets/setup/init.md" %}
33

4-
```
5-
{% include-markdown "tutorial/assets/setup/config_b.md" %}
6-
```
4+
{% include-markdown "tutorial/assets/setup/config_b.md" %}
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
??? info "Info - How to setup Vizzu" {% include-markdown
2-
"tutorial/assets/setup/init.md" %}
1+
??? info "Info - How to setup Vizzu"
2+
{% include-markdown "tutorial/assets/setup/init.md" %}
33

4-
```
5-
{% include-markdown "tutorial/assets/setup/config_c.md" %}
6-
```
4+
{% include-markdown "tutorial/assets/setup/config_c.md" %}

docs/tutorial/channels_legend.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ columns’ height and lightness represent the same values. The legend for the
3939
`lightness` channel is turned on using the `legend` property.
4040

4141
!!! info
42-
This is an example when we explicitly instruct `Vizzu` to show the legend. By
43-
default `Vizzu` automatically shows/hides the legend when it's necessary. You
44-
can also turn it off with the `legend`: `null` setting or set back to automatic
45-
mode with `legend`: `'auto'`.
42+
This is an example when we explicitly instruct `Vizzu` to show the legend.
43+
By default `Vizzu` automatically shows/hides the legend when it's necessary.
44+
You can also turn it off with the `legend`: `null` setting or set back to
45+
automatic mode with `legend`: `'auto'`.
4646

4747
<div id="tutorial_02"></div>
4848

@@ -64,8 +64,8 @@ is put on it that is on the x-axis resulting in each bar having a different
6464
color. If a measure is put on the `color` channel, a color range will be used.
6565

6666
!!! info
67-
The value on the `lightness` channel is removed in this step as it doesn’t make
68-
sense to use it together with the `color` channel in this case.
67+
The value on the `lightness` channel is removed in this step as it doesn’t
68+
make sense to use it together with the `color` channel in this case.
6969

7070
<div id="tutorial_03"></div>
7171

docs/tutorial/data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ let data = {
131131
Using data cube form:
132132

133133
!!! note
134-
In the example below, the record `Rock,Experimental,36` has been replaced with
135-
`Rock,Smooth,36` in order to illustrate that only data with same dimensions can
136-
be used in the data cube form.
134+
In the example below, the record `Rock,Experimental,36` has been replaced
135+
with `Rock,Smooth,36` in order to illustrate that only data with same
136+
dimensions can be used in the data cube form.
137137

138138
<table>
139139
<tbody><tr><th colspan="2" rowspan="2"></th><th colspan="4" style="text-align:center">Genres</th></tr>

0 commit comments

Comments
 (0)