Skip to content

Commit

Permalink
Set version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veghdev committed Nov 9, 2023
1 parent d8cdfab commit d6b886c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-vizzu-dev-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Build and Push Docker Image
run: |
IMAGE="vizzu-dev-desktop"
IMAGE_NAME="vizzu/$IMAGE:0.8"
IMAGE_NAME="vizzu/$IMAGE:0.9"
docker build -t $IMAGE_NAME -f tools/ci/docker/$IMAGE .
docker push $IMAGE_NAME
2 changes: 1 addition & 1 deletion .github/workflows/docker-vizzu-dev-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Build and Push Docker Image
run: |
IMAGE="vizzu-dev-wasm"
IMAGE_NAME="vizzu/$IMAGE:0.8"
IMAGE_NAME="vizzu/$IMAGE:0.9"
docker build -t $IMAGE_NAME -f tools/ci/docker/$IMAGE .
docker push $IMAGE_NAME
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.9.0] - 2023-11-09

### Fixed

- Implemented deep copying of received values to ensure the original data
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ docker run -i -t -v .:/workspace vizzu/vizzu-dev-desktop bash
or you can use a specific version of the prebuilt image:

```sh
docker run -i -t -v .:/workspace vizzu/vizzu-dev-desktop:0.8 bash
docker run -i -t -v .:/workspace vizzu/vizzu-dev-desktop:0.9 bash
```

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

```sh
docker run -i -t -v .:/workspace vizzu/vizzu-dev-wasm:0.8 bash
docker run -i -t -v .:/workspace vizzu/vizzu-dev-wasm:0.9 bash
```

### Building the project
Expand Down
2 changes: 1 addition & 1 deletion src/chart/main/version.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "version.h"

const App::Version Vizzu::Main::version(0, 8, 1);
const App::Version Vizzu::Main::version(0, 9, 0);

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

0 comments on commit d6b886c

Please sign in to comment.