diff --git a/benchmarks/src/jmh/java/org/corfudb/benchmarks/cluster/ClusterBenchmark.java b/benchmarks/src/jmh/java/org/corfudb/benchmarks/cluster/ClusterBenchmark.java index b77253a2..ac4fa3bd 100644 --- a/benchmarks/src/jmh/java/org/corfudb/benchmarks/cluster/ClusterBenchmark.java +++ b/benchmarks/src/jmh/java/org/corfudb/benchmarks/cluster/ClusterBenchmark.java @@ -196,7 +196,7 @@ private String getAppVersion() { //https://docs.gradle.org/current/dsl/org.gradle.api.tasks.SourceSetOutput.html //return new UniverseAppUtil().getAppVersion(); - return "0.4.0-SNAPSHOT"; + return "0.4.2.0-SNAPSHOT"; } } } diff --git a/cloud/corfu/install_corfu_helm.sh b/cloud/corfu/install_corfu_helm.sh index d85e21fd..7d28828c 100755 --- a/cloud/corfu/install_corfu_helm.sh +++ b/cloud/corfu/install_corfu_helm.sh @@ -2,4 +2,4 @@ set -e -helm install corfu corfu --set tls.enabled=false --set tls.certificate.enabled=false --set global.replicas=3 --set image.repository=corfudb/corfu-server --set image.tag=0.4.0-SNAPSHOT \ No newline at end of file +helm install corfu corfu --set tls.enabled=false --set tls.certificate.enabled=false --set global.replicas=3 --set image.repository=corfudb/corfu-server --set image.tag=0.4.2.0-SNAPSHOT \ No newline at end of file diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index cd699eeb..2d53e2b9 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -30,7 +30,7 @@ configurations.all { ext { logbackVersion = "1.2.3" - corfuVersion = "0.4.0-SNAPSHOT" + corfuVersion = "0.4.2.0-SNAPSHOT" protobufVersion = "3.11.1" nettyVersion = "2.0.25.Final" assertjVersion = "3.14.0" diff --git a/tests/docs/compatibility-tests/README.md b/tests/docs/compatibility-tests/README.md index a7701b92..c4475f36 100644 --- a/tests/docs/compatibility-tests/README.md +++ b/tests/docs/compatibility-tests/README.md @@ -29,7 +29,7 @@ The diagram below describes the compatibility test action in CorfuDB, which is r The basic idea is instead of using cloud hosted Corfu client/server versions, we use the specific versions build locally. 1. Prepare Corfu server docker image(s): - * In CorfuDB repo, switch to the version (git branch/commit) you want, change the version tag specified in pom file (0.4.0-SNAPSHOT for example), run prepare corfu docker image: + * In CorfuDB repo, switch to the version (git branch/commit) you want, change the version tag specified in pom file (0.0.0.0-SNAPSHOT for example), run prepare corfu docker image: ```shell script ./mvnw clean install -Pdocker -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip -T 1C ``` diff --git a/tests/src/main/resources/universe-tests.properties b/tests/src/main/resources/universe-tests.properties index c76a0132..8e79f9f7 100644 --- a/tests/src/main/resources/universe-tests.properties +++ b/tests/src/main/resources/universe-tests.properties @@ -1,5 +1,5 @@ corfu.cluster.name=static_cluster corfu.server.jar=build corfu.server.initialPort=9000 -server.version=0.4.0-SNAPSHOT +server.version=0.4.2.0-SNAPSHOT test.data.clean=true diff --git a/universe/docker/Dockerfile b/universe/docker/Dockerfile index af2c192d..8c3e1a40 100644 --- a/universe/docker/Dockerfile +++ b/universe/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM corfudb/corfu-server:0.4.0-SNAPSHOT +FROM corfudb/corfu-server:0.4.2.0-SNAPSHOT RUN apk update && apk add openssh openssl openrc