Skip to content

Commit

Permalink
Release v0.2.2.
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Jun 1, 2021
1 parent 01e1e50 commit 6a55c3a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8)

set(VINEYARD_MAJOR_VERSION 0)
set(VINEYARD_MINOR_VERSION 2)
set(VINEYARD_PATCH_VERSION 1)
set(VINEYARD_PATCH_VERSION 2)
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})

if(POLICY CMP0025)
Expand Down
4 changes: 2 additions & 2 deletions charts/vineyard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.1
version: 0.2.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.2.1
appVersion: 0.2.2
12 changes: 6 additions & 6 deletions misc/release-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ if [ "$version" = "" ]; then
exit 1
fi

docker pull docker.pkg.github.com/alibaba/libvineyard/vineyardd:$version
docker pull docker.pkg.github.com/alibaba/libvineyard/vineyardd:latest
docker pull docker.pkg.github.com/v6d-io/v6d/vineyardd:$version
docker pull docker.pkg.github.com/v6d-io/v6d/vineyardd:latest

docker tag docker.pkg.github.com/alibaba/libvineyard/vineyardd:$version libvineyard/vineyardd:$version
docker tag docker.pkg.github.com/alibaba/libvineyard/vineyardd:latest libvineyard/vineyardd:latest
docker tag docker.pkg.github.com/alibaba/libvineyard/vineyardd:$version quay.io/libvineyard/vineyardd:$version
docker tag docker.pkg.github.com/alibaba/libvineyard/vineyardd:latest quay.io/libvineyard/vineyardd:latest
docker tag docker.pkg.github.com/v6d-io/v6d/vineyardd:$version libvineyard/vineyardd:$version
docker tag docker.pkg.github.com/v6d-io/v6d/vineyardd:latest libvineyard/vineyardd:latest
docker tag docker.pkg.github.com/v6d-io/v6d/vineyardd:$version quay.io/libvineyard/vineyardd:$version
docker tag docker.pkg.github.com/v6d-io/v6d/vineyardd:latest quay.io/libvineyard/vineyardd:latest

docker push libvineyard/vineyardd:$version
docker push libvineyard/vineyardd:latest
Expand Down
2 changes: 1 addition & 1 deletion misc/release-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mkdir -p wheels/$version

# download wheels from github artifacts
pushd wheels/$version
curl -s https://api.github.com/repos/alibaba/libvineyard/releases/tags/$version | grep "browser_download_url.*whl" | cut -d : -f 2,3 | tr -d \" | wget -qi -
curl -s https://api.github.com/repos/v6d-io/v6d/releases/tags/$version | grep "browser_download_url.*whl" | cut -d : -f 2,3 | tr -d \" | wget -qi -
popd

twine check ./wheels/$version/*.whl
Expand Down

0 comments on commit 6a55c3a

Please sign in to comment.