From 8e4dbc70609d0c8f986ddaf9da30170eca3bb668 Mon Sep 17 00:00:00 2001 From: Katelyn Baker Date: Sun, 13 Jan 2019 20:34:22 +0000 Subject: [PATCH] RELEASE - Post V4 branch cut update platform version to 5 --- build.gradle | 4 ++-- constants.properties | 2 +- core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 0c8ab8699d..53d5f7953f 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { file("$projectDir/constants.properties").withInputStream { constants.load(it) } // Our version: bump this on release. - ext.corda_release_version = "4.0-SNAPSHOT" + ext.corda_release_version = "5.0-SNAPSHOT" ext.corda_platform_version = constants.getProperty("platformVersion") ext.gradle_plugins_version = constants.getProperty("gradlePluginsVersion") @@ -472,4 +472,4 @@ wrapper { buildScan { termsOfServiceUrl = 'https://gradle.com/terms-of-service' termsOfServiceAgree = 'yes' -} \ No newline at end of file +} diff --git a/constants.properties b/constants.properties index d7631e8aaf..b7ed08ca31 100644 --- a/constants.properties +++ b/constants.properties @@ -4,7 +4,7 @@ kotlinVersion=1.2.71 # When incrementing platformVersion make sure to update # # net.corda.core.internal.CordaUtilsKt.PLATFORM_VERSION as well. # # ***************************************************************# -platformVersion=4 +platformVersion=5 guavaVersion=25.1-jre proguardVersion=6.0.3 bouncycastleVersion=1.60 diff --git a/core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt b/core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt index c67cf019d9..d1b7ee1376 100644 --- a/core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt +++ b/core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt @@ -33,7 +33,7 @@ import java.util.jar.JarInputStream // *Internal* Corda-specific utilities. -const val PLATFORM_VERSION = 4 +const val PLATFORM_VERSION = 5 fun ServicesForResolution.ensureMinimumPlatformVersion(requiredMinPlatformVersion: Int, feature: String) { checkMinimumPlatformVersion(networkParameters.minimumPlatformVersion, requiredMinPlatformVersion, feature) @@ -157,4 +157,4 @@ private fun hasFile(jarStream: JarInputStream, className: String): Boolean { return true } } -} \ No newline at end of file +}