NOTICK: Change Corda version to 4.4

Changed Corda version to 4.4 in preparation for next release.
This commit is contained in:
Jonathan Locke 2019-09-16 16:45:49 +01:00
parent 1c2c3d3fed
commit 0e7335c080
4 changed files with 10 additions and 10 deletions

View File

@ -8,4 +8,4 @@ package net.corda.common.logging
* the generated file does not need to be committed to source control (originally added to source control for ease of use) * the generated file does not need to be committed to source control (originally added to source control for ease of use)
*/ */
internal const val CURRENT_MAJOR_RELEASE = "4.3-SNAPSHOT" internal const val CURRENT_MAJOR_RELEASE = "4.4-SNAPSHOT"

View File

@ -2,7 +2,7 @@
# because some versions here need to be matched by app authors in # because some versions here need to be matched by app authors in
# their own projects. So don't get fancy with syntax! # their own projects. So don't get fancy with syntax!
cordaVersion=4.3-SNAPSHOT cordaVersion=4.4-SNAPSHOT
gradlePluginsVersion=5.0.2 gradlePluginsVersion=5.0.2
kotlinVersion=1.2.71 kotlinVersion=1.2.71
java8MinUpdateVersion=171 java8MinUpdateVersion=171

View File

@ -1,8 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
NODE_LIST=("dockerNode1" "dockerNode2" "dockerNode3") NODE_LIST=("dockerNode1" "dockerNode2" "dockerNode3")
NETWORK_NAME=mininet NETWORK_NAME=mininet
CORDAPP_VERSION="4.3-SNAPSHOT" CORDAPP_VERSION="4.4-SNAPSHOT"
DOCKER_IMAGE_VERSION="corda-zulu-4.3-snapshot" DOCKER_IMAGE_VERSION="corda-zulu-4.4-snapshot"
mkdir cordapps mkdir cordapps
rm -f cordapps/* rm -f cordapps/*

View File

@ -21,7 +21,7 @@ In this example, the certificates are stored at ``/home/user/cordaBase/certifica
-v /path/to/cordapps:/opt/corda/cordapps \ -v /path/to/cordapps:/opt/corda/cordapps \
-p 10200:10200 \ -p 10200:10200 \
-p 10201:10201 \ -p 10201:10201 \
corda/corda-zulu-4.3-snapshot:latest corda/corda-zulu-4.4-snapshot:latest
As the node runs within a container, several mount points are required: As the node runs within a container, several mount points are required:
@ -59,7 +59,7 @@ In this example, we have previously generated a network-parameters file using th
-v /home/user/sharedFolder/network-parameters:/opt/corda/network-parameters \ -v /home/user/sharedFolder/network-parameters:/opt/corda/network-parameters \
-p 10200:10200 \ -p 10200:10200 \
-p 10201:10201 \ -p 10201:10201 \
corda/corda-zulu-4.3-snapshot:latest corda/corda-zulu-4.4-snapshot:latest
There is a new mount ``/home/user/sharedFolder/node-infos:/opt/corda/additional-node-infos`` which is used to hold the ``nodeInfo`` of all the nodes within the network. There is a new mount ``/home/user/sharedFolder/node-infos:/opt/corda/additional-node-infos`` which is used to hold the ``nodeInfo`` of all the nodes within the network.
As the node within the container starts up, it will place it's own nodeInfo into this directory. This will allow other nodes also using this folder to see this new node. As the node within the container starts up, it will place it's own nodeInfo into this directory. This will allow other nodes also using this folder to see this new node.
@ -83,7 +83,7 @@ Joining TestNet
-e LOCALITY="London" -e COUNTRY="GB" \ -e LOCALITY="London" -e COUNTRY="GB" \
-v /home/user/docker/config:/etc/corda \ -v /home/user/docker/config:/etc/corda \
-v /home/user/docker/certificates:/opt/corda/certificates \ -v /home/user/docker/certificates:/opt/corda/certificates \
corda/corda-zulu-4.3-snapshot:latest config-generator --testnet corda/corda-zulu-4.4-snapshot:latest config-generator --testnet
``$MY_PUBLIC_ADDRESS`` will be the public address that this node will be advertised on. ``$MY_PUBLIC_ADDRESS`` will be the public address that this node will be advertised on.
``$ONE_TIME_DOWNLOAD_KEY`` is the one-time code provided for joining TestNet. ``$ONE_TIME_DOWNLOAD_KEY`` is the one-time code provided for joining TestNet.
@ -108,7 +108,7 @@ It is now possible to start the node using the generated config and certificates
-v /home/user/corda/samples/bank-of-corda-demo/build/nodes/BankOfCorda/cordapps:/opt/corda/cordapps \ -v /home/user/corda/samples/bank-of-corda-demo/build/nodes/BankOfCorda/cordapps:/opt/corda/cordapps \
-p 10200:10200 \ -p 10200:10200 \
-p 10201:10201 \ -p 10201:10201 \
corda/corda-zulu-4.3-snapshot:latest corda/corda-zulu-4.4-snapshot:latest
Joining an existing Compatibility Zone Joining an existing Compatibility Zone
@ -132,7 +132,7 @@ It is possible to configure the name of the Trust Root file by setting the ``TRU
-e MY_EMAIL_ADDRESS="cordauser@r3.com" \ -e MY_EMAIL_ADDRESS="cordauser@r3.com" \
-v /home/user/docker/config:/etc/corda \ -v /home/user/docker/config:/etc/corda \
-v /home/user/docker/certificates:/opt/corda/certificates \ -v /home/user/docker/certificates:/opt/corda/certificates \
corda/corda-zulu-4.3-snapshot:latest config-generator --generic corda/corda-zulu-4.4-snapshot:latest config-generator --generic
Several environment variables must also be passed to the container to allow it to register: Several environment variables must also be passed to the container to allow it to register:
@ -163,5 +163,5 @@ Once the container has finished performing the initial registration, the node ca
-v /home/user/corda/samples/bank-of-corda-demo/build/nodes/BankOfCorda/cordapps:/opt/corda/cordapps \ -v /home/user/corda/samples/bank-of-corda-demo/build/nodes/BankOfCorda/cordapps:/opt/corda/cordapps \
-p 10200:10200 \ -p 10200:10200 \
-p 10201:10201 \ -p 10201:10201 \
corda/corda-zulu-4.3-snapshot:latest corda/corda-zulu-4.4-snapshot:latest