Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/config.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
JAVA_VERSION=17
JAVA_DISTRIBUTION=temurin
MAVEN_VERSION=3.9.11
HZ_VERSION=5.7.0
HZ_VERSION=5.7.1
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cmake_minimum_required(VERSION 3.10)

project(hazelcast-cpp-client
VERSION 5.7.0
VERSION 5.7.1
DESCRIPTION "Hazelcast C++ Client"
LANGUAGES CXX)

Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cmake_minimum_required (VERSION 3.10)

project (hazelcast-cpp-client-examples
VERSION 5.7.0
VERSION 5.7.1
DESCRIPTION "Hazelcast C++ Client Code Examples"
LANGUAGES CXX)

Expand Down
2 changes: 1 addition & 1 deletion hazelcast/test/benchmark/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
cmake_minimum_required(VERSION 3.10)

project(hazelcast-cpp-client-benchmark
VERSION 5.7.0
VERSION 5.7.1
DESCRIPTION "Hazelcast C++ Client Benchmark Project"
LANGUAGES CXX)

Expand Down
4 changes: 2 additions & 2 deletions scripts/start-rc.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setlocal EnableDelayedExpansion

if "%HZ_VERSION%"=="" (
set HZ_VERSION=5.7.0
set HZ_VERSION=5.7.1
)
set HAZELCAST_TEST_VERSION=%HZ_VERSION%
set HAZELCAST_ENTERPRISE_VERSION=%HZ_VERSION%
Expand All @@ -27,7 +27,7 @@ if exist "hazelcast-remote-controller-%HAZELCAST_RC_VERSION%.jar" (
) else (
echo "Downloading: remote-controller jar com.hazelcast:hazelcast-remote-controller:%HAZELCAST_RC_VERSION%"
call mvn -q org.apache.maven.plugins:maven-dependency-plugin:2.10:get -Dtransitive=false -DremoteRepositories=%ENTERPRISE_SNAPSHOT_REPO% -Dartifact=com.hazelcast:hazelcast-remote-controller:%HAZELCAST_RC_VERSION% -Ddest=hazelcast-remote-controller-%HAZELCAST_RC_VERSION%.jar || (
echo "Failed download remote-controller jar com.hazelcast:hazelcast-remote-controller:%HAZELCAST_RC_VERSION%"
echo "Failed download remote-controller jar com.hazelcast:hazelcast-remote-controller:%HAZELCAST_RC_VERSION%"
exit /b 1
)
)
Expand Down
2 changes: 1 addition & 1 deletion scripts/start-rc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ set +x

trap cleanup EXIT

HZ_VERSION=${HZ_VERSION:-5.7.0}
HZ_VERSION=${HZ_VERSION:-5.7.1}
HAZELCAST_TEST_VERSION=${HZ_VERSION}
HAZELCAST_ENTERPRISE_VERSION=${HZ_VERSION}
HAZELCAST_RC_VERSION=0.8-SNAPSHOT
Expand Down
Loading