Skip to content

Commit

Permalink
Bump corfu version to 0.4.2.0 (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
chetangudisagar committed May 3, 2024
1 parent 70aa5d2 commit d5dcbb0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
}
2 changes: 1 addition & 1 deletion cloud/corfu/install_corfu_helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
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
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/docs/compatibility-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion tests/src/main/resources/universe-tests.properties
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion universe/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit d5dcbb0

Please sign in to comment.