[NOTICK]: Change Corda version

Changed Corda version in places where it was missed.
This commit is contained in:
Jonathan Locke 2019-08-28 14:14:39 +01:00
parent bbadec70ba
commit c525f77ae9
3 changed files with 4 additions and 4 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)
*/
internal const val CURRENT_MAJOR_RELEASE = "5.0-SNAPSHOT"
internal const val CURRENT_MAJOR_RELEASE = "4.3-SNAPSHOT"

View File

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

View File

@ -10,7 +10,7 @@ import kotlin.test.assertEquals
import kotlin.test.assertTrue
class NodeRPCTests {
private val CORDA_VERSION_REGEX = "\\d+(\\.\\d+)?(-\\w+)?".toRegex() // e.g. "5.0-SNAPSHOT"
private val CORDA_VERSION_REGEX = "\\d+(\\.\\d+)?(-\\w+)?".toRegex() // e.g. "4.3-SNAPSHOT"
private val CORDA_VENDOR = "Corda Open Source"
private val CORDAPPS = listOf(FINANCE_CONTRACTS_CORDAPP, FINANCE_WORKFLOWS_CORDAPP)
private val CORDAPP_TYPES = setOf("Contract CorDapp", "Workflow CorDapp")