Skip to content

Commit

Permalink
Release v0.10.1 (#1308)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 authored Jan 29, 2022
1 parent 97d12bf commit 5f23994
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/networkx-forward-algo-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0
0.10.1
2 changes: 1 addition & 1 deletion analytical_engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions charts/graphscope-store/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/graphscope/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion k8s/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ else
endif

VERSION ?= latest
VINEYARD_VERSION ?= v0.3.16
VINEYARD_VERSION ?= v0.3.17
PROFILE ?= release


Expand Down
2 changes: 1 addition & 1 deletion k8s/graphscope-dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/graphscope-store.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion k8s/gsvineyard.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion k8s/ubuntu/gsvineyard.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
4 changes: 2 additions & 2 deletions scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5f23994

Please sign in to comment.