Skip to content

Commit afae734

Browse files
committed
NOTICK: Changes done to build 4.4.7-RC01
1 parent 8dd9dee commit afae734

File tree

4 files changed

+5
-23
lines changed

4 files changed

+5
-23
lines changed

.ci/dev/regression/Jenkinsfile

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -273,24 +273,6 @@ pipeline {
273273
}
274274
}
275275

276-
stage('Publish Release to Docker Hub') {
277-
when {
278-
expression { isReleaseTag && !isInternalRelease && !isReleaseCandidate}
279-
}
280-
steps {
281-
withCredentials([
282-
usernamePassword(credentialsId: 'corda-publisher-docker-hub-credentials',
283-
usernameVariable: 'DOCKER_USERNAME',
284-
passwordVariable: 'DOCKER_PASSWORD')
285-
]) {
286-
sh script: [
287-
'./gradlew',
288-
COMMON_GRADLE_PARAMS,
289-
'pushOfficialImages'
290-
].join(' ')
291-
}
292-
}
293-
}
294276
}
295277

296278
post {

common/logging/src/main/kotlin/net/corda/common/logging/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ package net.corda.common.logging
99
* (originally added to source control for ease of use)
1010
*/
1111

12-
internal const val CURRENT_MAJOR_RELEASE = "4.4-SNAPSHOT"
12+
internal const val CURRENT_MAJOR_RELEASE = "4.4.7-RC01"

constants.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# because some versions here need to be matched by app authors in
33
# their own projects. So don't get fancy with syntax!
44

5-
cordaVersion=4.4
6-
versionSuffix=SNAPSHOT
5+
cordaVersion=4.4.7
6+
versionSuffix=RC01
77
gradlePluginsVersion=5.0.6
88
kotlinVersion=1.2.71
99
java8MinUpdateVersion=171

docker/src/bash/example-mini-network.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env bash
22
NODE_LIST=("dockerNode1" "dockerNode2" "dockerNode3")
33
NETWORK_NAME=mininet
4-
CORDAPP_VERSION="4.4-SNAPSHOT"
5-
DOCKER_IMAGE_VERSION="corda-zulu-4.4-snapshot"
4+
CORDAPP_VERSION="4.4.7-RC01"
5+
DOCKER_IMAGE_VERSION="corda-zulu-4.4.7-RC01"
66

77
mkdir cordapps
88
rm -f cordapps/*

0 commit comments

Comments
 (0)