From b2eba94d02e706245c3dced92f2b5cfde4768397 Mon Sep 17 00:00:00 2001 From: Ronan Browne Date: Fri, 15 Sep 2023 21:03:13 +0100 Subject: [PATCH] ES-1351: bump platformVersion for new release branch (#7496) --- constants.properties | 2 +- core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/constants.properties b/constants.properties index 29b7d398ab..c0cbb8cb71 100644 --- a/constants.properties +++ b/constants.properties @@ -12,7 +12,7 @@ java8MinUpdateVersion=171 # When incrementing platformVersion make sure to update # # net.corda.core.internal.CordaUtilsKt.PLATFORM_VERSION as well. # # ***************************************************************# -platformVersion=13 +platformVersion=14 openTelemetryVersion=1.20.1 openTelemetrySemConvVersion=1.20.1-alpha guavaVersion=28.0-jre 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 8461583901..9f315a778d 100644 --- a/core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt +++ b/core/src/main/kotlin/net/corda/core/internal/CordaUtils.kt @@ -29,7 +29,7 @@ import java.util.jar.JarInputStream // When incrementing platformVersion make sure to update PLATFORM_VERSION in constants.properties as well. -const val PLATFORM_VERSION = 13 +const val PLATFORM_VERSION = 14 fun ServicesForResolution.ensureMinimumPlatformVersion(requiredMinPlatformVersion: Int, feature: String) { checkMinimumPlatformVersion(networkParameters.minimumPlatformVersion, requiredMinPlatformVersion, feature)