From 5f239946a5a33ea1c449fd91591ce1ba14809a24 Mon Sep 17 00:00:00 2001 From: DongZe Li <9546726@qq.com> Date: Sat, 29 Jan 2022 13:01:05 +0800 Subject: [PATCH] Release v0.10.1 (#1308) --- .github/workflows/gae.yml | 2 +- .github/workflows/gss.yml | 2 +- .github/workflows/networkx-forward-algo-nightly.yml | 2 +- VERSION | 2 +- analytical_engine/CMakeLists.txt | 2 +- charts/graphscope-store/Chart.yaml | 4 ++-- charts/graphscope/Chart.yaml | 4 ++-- k8s/Makefile | 2 +- k8s/graphscope-dev.Dockerfile | 2 +- k8s/graphscope-store.Dockerfile | 2 +- k8s/gsvineyard.Dockerfile | 2 +- k8s/ubuntu/gsvineyard.Dockerfile | 2 +- scripts/install_deps.sh | 4 ++-- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/gae.yml b/.github/workflows/gae.yml index 4b85e4e39889..469a0d27f65f 100644 --- a/.github/workflows/gae.yml +++ b/.github/workflows/gae.yml @@ -32,7 +32,7 @@ jobs: build-gae: runs-on: ubuntu-20.04 container: - image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.3.16 + image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.3.17 options: --shm-size 4096m steps: diff --git a/.github/workflows/gss.yml b/.github/workflows/gss.yml index f9d32a076cac..73b047f90b5a 100644 --- a/.github/workflows/gss.yml +++ b/.github/workflows/gss.yml @@ -43,7 +43,7 @@ jobs: # be configured manually when a new self-hosted runner is added. runs-on: self-hosted container: - image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.3.16 + image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.3.17 defaults: run: shell: bash --noprofile --norc -eo pipefail {0} diff --git a/.github/workflows/networkx-forward-algo-nightly.yml b/.github/workflows/networkx-forward-algo-nightly.yml index 1e3e08702a98..2af4ef7efbca 100644 --- a/.github/workflows/networkx-forward-algo-nightly.yml +++ b/.github/workflows/networkx-forward-algo-nightly.yml @@ -16,7 +16,7 @@ jobs: run: shell: bash --noprofile --norc -eo pipefail {0} container: - image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.3.16 + image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.3.17 options: --shm-size 4096m diff --git a/VERSION b/VERSION index 78bc1abd14f2..571215736a66 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.0 +0.10.1 diff --git a/analytical_engine/CMakeLists.txt b/analytical_engine/CMakeLists.txt index cc80c9816b48..3f87f8d0798d 100644 --- a/analytical_engine/CMakeLists.txt +++ b/analytical_engine/CMakeLists.txt @@ -166,7 +166,7 @@ endif () find_package(libgrapelite REQUIRED) include_directories(${LIBGRAPELITE_INCLUDE_DIRS}) -find_package(vineyard 0.3.16 REQUIRED) +find_package(vineyard 0.3.17 REQUIRED) include_directories(${VINEYARD_INCLUDE_DIRS}) add_compile_options(-DENABLE_SELECTOR) diff --git a/charts/graphscope-store/Chart.yaml b/charts/graphscope-store/Chart.yaml index d02fea4832ec..98e9b0b6f228 100644 --- a/charts/graphscope-store/Chart.yaml +++ b/charts/graphscope-store/Chart.yaml @@ -1,7 +1,7 @@ annotations: category: Database apiVersion: v2 -appVersion: 0.10.0 +appVersion: 0.10.1 description: Chart to create a GraphScope Store cluster home: https://graphscope.io keywords: @@ -11,7 +11,7 @@ keywords: name: graphscope-store sources: - https://github.com/alibaba/GraphScope/tree/main/interactive_engine/src/v2/src/main -version: 0.10.0 +version: 0.10.1 dependencies: - condition: kafka.enabled diff --git a/charts/graphscope/Chart.yaml b/charts/graphscope/Chart.yaml index 1bac62a8c027..ed58c7bb684c 100644 --- a/charts/graphscope/Chart.yaml +++ b/charts/graphscope/Chart.yaml @@ -26,10 +26,10 @@ 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.10.0 +version: 0.10.1 # 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. # It is recommended to use it with quotes. -appVersion: "0.10.0" +appVersion: "0.10.1" diff --git a/k8s/Makefile b/k8s/Makefile index 9dc658cf7ed9..80f3d9f64f38 100644 --- a/k8s/Makefile +++ b/k8s/Makefile @@ -40,7 +40,7 @@ else endif VERSION ?= latest -VINEYARD_VERSION ?= v0.3.16 +VINEYARD_VERSION ?= v0.3.17 PROFILE ?= release diff --git a/k8s/graphscope-dev.Dockerfile b/k8s/graphscope-dev.Dockerfile index 5bf87e4b1a66..338ca4c3cfa9 100644 --- a/k8s/graphscope-dev.Dockerfile +++ b/k8s/graphscope-dev.Dockerfile @@ -4,7 +4,7 @@ # the result image includes all runtime stuffs of graphscope, with analytical engine, # learning engine and interactive engine installed. -ARG BASE_VERSION=v0.3.16 +ARG BASE_VERSION=v0.3.17 FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:$BASE_VERSION as builder ARG NETWORKX=ON diff --git a/k8s/graphscope-store.Dockerfile b/k8s/graphscope-store.Dockerfile index f737e4a44021..214d56ce5acd 100644 --- a/k8s/graphscope-store.Dockerfile +++ b/k8s/graphscope-store.Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_VERSION=v0.3.16 +ARG BASE_VERSION=v0.3.17 FROM registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:$BASE_VERSION as builder ARG CI=true diff --git a/k8s/gsvineyard.Dockerfile b/k8s/gsvineyard.Dockerfile index b6e81e4d939f..2e50029deeaa 100644 --- a/k8s/gsvineyard.Dockerfile +++ b/k8s/gsvineyard.Dockerfile @@ -27,7 +27,7 @@ RUN sudo mkdir -p /opt/vineyard && \ make -j`nproc` && \ make install && \ cd /tmp && \ - git clone -b v0.3.16 https://github.com/v6d-io/v6d.git --depth=1 && \ + git clone -b v0.3.17 https://github.com/v6d-io/v6d.git --depth=1 && \ cd v6d && \ git submodule update --init && \ mkdir -p /tmp/v6d/build && \ diff --git a/k8s/ubuntu/gsvineyard.Dockerfile b/k8s/ubuntu/gsvineyard.Dockerfile index da1d39e590c8..69fdbfd13825 100644 --- a/k8s/ubuntu/gsvineyard.Dockerfile +++ b/k8s/ubuntu/gsvineyard.Dockerfile @@ -14,7 +14,7 @@ RUN cd /tmp && \ make -j`nproc` && \ make install && \ cd /tmp && \ - git clone -b v0.3.16 https://github.com/v6d-io/v6d.git --depth=1 && \ + git clone -b v0.3.17 https://github.com/v6d-io/v6d.git --depth=1 && \ cd v6d && \ git submodule update --init && \ mkdir -p /tmp/v6d/build && \ diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index a24fe3793d06..f47fcf60008c 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -14,8 +14,8 @@ readonly GREEN="\033[0;32m" readonly NC="\033[0m" # No Color readonly GRAPE_BRANCH="master" # libgrape-lite branch -readonly V6D_VERSION="0.3.16" # vineyard version -readonly V6D_BRANCH="v0.3.16" # vineyard branch +readonly V6D_VERSION="0.3.17" # vineyard version +readonly V6D_BRANCH="v0.3.17" # vineyard branch readonly OUTPUT_ENV_FILE="${HOME}/.graphscope_env" IS_IN_WSL=false && [[ ! -z "${IS_WSL}" || ! -z "${WSL_DISTRO_NAME}" ]] && IS_IN_WSL=true