From f21446d191c28d9f0f09837b6b6ce4aa9d9e7fb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Sa=C4=8Dari=C4=87?= Date: Wed, 5 Apr 2023 15:14:15 +0200 Subject: [PATCH] Prepare for 2.7.0 version of Memgraph (#208) --- .github/workflows/docker_publish.yml | 2 +- .github/workflows/test.yml | 2 +- .gitmodules | 2 +- Dockerfile | 2 +- Dockerfile.cugraph | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml index 50b3be143..8fce8bce0 100644 --- a/.github/workflows/docker_publish.yml +++ b/.github/workflows/docker_publish.yml @@ -12,7 +12,7 @@ jobs: env: DOCKER_ORGANIZATION_NAME: memgraph DOCKER_REPOSITORY_NAME: memgraph-mage - MEMGRAPH_VERSION: 2.6.0 + MEMGRAPH_VERSION: 2.7.0 steps: - name: Checkout repository and submodules uses: actions/checkout@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f73f8c31a..acf3cece0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: build: runs-on: ubuntu-latest env: - MEMGRAPH_VERSION: 2.6.0 + MEMGRAPH_VERSION: 2.7.0 strategy: matrix: architecture: ["amd64", "arm64"] diff --git a/.gitmodules b/.gitmodules index 8ffa27125..e4bdef774 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "cpp/memgraph"] path = cpp/memgraph url = https://github.com/memgraph/memgraph.git - branch = release/2.6 + branch = release/2.7 diff --git a/Dockerfile b/Dockerfile index 7ae31711f..5e912f30d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM debian:bullseye as base USER root -ARG MG_VERSION=2.6.0 +ARG MG_VERSION=2.7.0 ARG PY_VERSION_DEFAULT ENV MG_VERSION ${MG_VERSION} ENV PY_VERSION ${PY_VERSION_DEFAULT} diff --git a/Dockerfile.cugraph b/Dockerfile.cugraph index a446bba84..72b731372 100644 --- a/Dockerfile.cugraph +++ b/Dockerfile.cugraph @@ -2,7 +2,7 @@ ARG CUGRAPH_VERSION=22.02 ARG CUDA_VERSION=11.5 ARG CUDA_VERSION_MINOR=11.5.2 ARG PY_VERSION=3.8 -ARG MG_VERSION=2.6.0 +ARG MG_VERSION=2.7.0 FROM rapidsai/rapidsai:${CUGRAPH_VERSION}-cuda${CUDA_VERSION}-runtime-ubuntu20.04-py${PY_VERSION} as cugraph-dev