From ad6c09efb5964e48417db9e6d2a6520419661f98 Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 18 Jun 2026 12:04:52 +0100 Subject: [PATCH 1/2] bump version to 1.6.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b1c9e73..203e2c1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ if(WASM) set(CMAKE_TOOLCHAIN_FILE "${CMAKE_SOURCE_DIR}/wasm/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake") endif() -project(mgclient VERSION 1.5.0) +project(mgclient VERSION 1.6.0) # Minor version increase can also mean ABI incompatibility with previous # versions. IMPORTANT: Take care of the SO version manually. set(mgclient_SOVERSION 2) From 7d9983bdae20f54f944d1133187b43b0c47db535 Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 18 Jun 2026 12:11:15 +0100 Subject: [PATCH 2/2] fix CI --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe9e798..acdef15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -252,9 +252,10 @@ jobs: - name: Set Memgraph Version run: | if [[ "${{ matrix.mgversion }}" == "latest" ]]; then + release_json=$(curl -s https://api.github.com/repos/memgraph/memgraph/releases/latest) mgversion=$( - curl -s https://api.github.com/repos/memgraph/memgraph/releases/latest \ - | grep -m1 '"tag_name":' \ + printf '%s' "$release_json" \ + | grep '"tag_name":' \ | sed -E 's/.*"([^"]+)".*/\1/' \ | sed 's/^v//' )