Skip to content

Commit

Permalink
Merge pull request #422 from vizzuhq/release-0.9.0
Browse files Browse the repository at this point in the history
Set version to 0.9.0
  • Loading branch information
veghdev authored Nov 9, 2023
2 parents d8cdfab + 33b776c commit c3c98a9
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 17 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docker-vizzu-dev-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths:
- '**/vizzu-dev-desktop'
- '**/docker-vizzu-dev-desktop.yml'

jobs:
build-and-push:
Expand All @@ -19,6 +20,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
3 changes: 2 additions & 1 deletion .github/workflows/docker-vizzu-dev-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths:
- '**/vizzu-dev-wasm'
- '**/docker-vizzu-dev-wasm.yml'

jobs:
build-and-push:
Expand All @@ -19,6 +20,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
7 changes: 4 additions & 3 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 Expand Up @@ -304,7 +304,8 @@ To release `Vizzu`, follow the steps below:

- If the major or minor version has changed, increase the version in
`.github/workflows/docker-vizzu-dev-desktop.yml`,
`.github/workflows/docker-vizzu-dev-wasm.yml` and `CONTRIBUTING.md`.
`.github/workflows/docker-vizzu-dev-wasm.yml`,
`tools/ci/gcp/cloudbuild/cloudbuild.yaml` and `CONTRIBUTING.md`.

- Set the release and release date in `CHANGELOG.md`, under the `Unreleased`
title.
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/";
22 changes: 11 additions & 11 deletions tools/ci/gcp/cloudbuild/cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
steps:
- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: init
waitFor:
- '-'
Expand All @@ -11,7 +11,7 @@ steps:
npm run init
dir: /workspace

- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: ci-src
waitFor:
- init
Expand All @@ -28,7 +28,7 @@ steps:
npm run lint-src
fi
dir: /workspace
- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: ci-docs
waitFor:
- init
Expand All @@ -45,7 +45,7 @@ steps:
npm run lint-docs
fi
dir: /workspace
- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: ci-tools
waitFor:
- init
Expand All @@ -64,7 +64,7 @@ steps:
fi
dir: /workspace

- name: vizzu/vizzu-dev-desktop:0.8
- name: vizzu/vizzu-dev-desktop:0.9
id: build-desktop-clangformat
waitFor:
- ci-src
Expand All @@ -83,7 +83,7 @@ steps:
fi
dir: /workspace

- name: vizzu/vizzu-dev-desktop:0.8
- name: vizzu/vizzu-dev-desktop:0.9
id: build-desktop-clangtidy
waitFor:
- build-desktop-clangformat
Expand All @@ -99,7 +99,7 @@ steps:
./tools/ci/run/pkg-build-desktop-clangtidy.sh
fi
dir: /workspace
- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: build-wasm
waitFor:
- build-desktop-clangformat
Expand All @@ -119,7 +119,7 @@ steps:
fi
dir: /workspace

- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: lib-sha
waitFor:
- build-wasm
Expand All @@ -143,7 +143,7 @@ steps:
fi
dir: /workspace

- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: test
waitFor:
- lib-sha
Expand All @@ -158,7 +158,7 @@ steps:
fi
dir: /workspace

- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: docs
waitFor:
- test
Expand Down Expand Up @@ -199,7 +199,7 @@ steps:
secretEnv:
- VIZZUHQ_GITHUB_SSH

- name: vizzu/vizzu-dev-wasm:0.8
- name: vizzu/vizzu-dev-wasm:0.9
id: release
waitFor:
- docs
Expand Down

0 comments on commit c3c98a9

Please sign in to comment.