From 497d483e2f289344e54b6a65a1d3b793763755de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ramos?= Date: Tue, 6 Feb 2024 16:43:52 +0000 Subject: [PATCH] CORE-19372: Fix Persistent Storage Type Case (#1486) Replace "DATABASE" by "Database" to describe persistent storage types. --- .../configuration/stateManager/1.0/corda.stateManager.json | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/config-schema/src/main/resources/net/corda/schema/configuration/stateManager/1.0/corda.stateManager.json b/data/config-schema/src/main/resources/net/corda/schema/configuration/stateManager/1.0/corda.stateManager.json index d9ed6a7520..dd85b2f9d3 100644 --- a/data/config-schema/src/main/resources/net/corda/schema/configuration/stateManager/1.0/corda.stateManager.json +++ b/data/config-schema/src/main/resources/net/corda/schema/configuration/stateManager/1.0/corda.stateManager.json @@ -17,7 +17,7 @@ "type": { "description": "The type of state manager implementation.", "enum": [ - "DATABASE" + "Database" ] }, "additionalProperties": false @@ -31,7 +31,7 @@ "if": { "properties": { "type": { - "const": "DATABASE" + "const": "Database" } } }, diff --git a/gradle.properties b/gradle.properties index 475a14a3df..de11f21bcb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ cordaProductVersion = 5.2.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 36 +cordaApiRevision = 37 # Main kotlin.stdlib.default.dependency = false