diff --git a/CMakeLists.txt b/CMakeLists.txt index 4276f746..e236734d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/charts/vineyard/Chart.yaml b/charts/vineyard/Chart.yaml index 743805cc..55094592 100644 --- a/charts/vineyard/Chart.yaml +++ b/charts/vineyard/Chart.yaml @@ -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 diff --git a/misc/release-docker.sh b/misc/release-docker.sh index 51b2d560..f476670a 100755 --- a/misc/release-docker.sh +++ b/misc/release-docker.sh @@ -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 diff --git a/misc/release-wheels.sh b/misc/release-wheels.sh index bde68d2a..dcf72531 100755 --- a/misc/release-wheels.sh +++ b/misc/release-wheels.sh @@ -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