From 7e036f5be47df04933e0e54cd0207458cae0c9ef Mon Sep 17 00:00:00 2001 From: Jeremy Klein Date: Fri, 15 Sep 2023 17:42:19 -0700 Subject: [PATCH 1/2] Typo fix --- .../kotlin/com/lightspark/sdk/uma/LnurlComplianceResponse.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/uma/LnurlComplianceResponse.kt b/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/uma/LnurlComplianceResponse.kt index 005e5dcf..cfa003c9 100644 --- a/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/uma/LnurlComplianceResponse.kt +++ b/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/uma/LnurlComplianceResponse.kt @@ -8,7 +8,7 @@ import kotlinx.serialization.Serializable * @property receiverKycStatus Indicates whether VASP2 has KYC information about the receiver. * @property isSubjectToTravelRule Indicates whether VASP2 is a financial institution that requires travel rule information. * @property receiverIdentifier The identifier of the receiver at VASP2. - * @property signature The signature of the sender on the signable payload. + * @property signature The signature of the receiving VASP on the [signablePayload]. * @property signatureNonce The nonce used in the signature. * @property signatureTimestamp The timestamp used in the signature. */ From 9a8f2272f9d18f533569a98f9b841d8661a0a925 Mon Sep 17 00:00:00 2001 From: runner Date: Sat, 16 Sep 2023 00:49:02 +0000 Subject: [PATCH 2/2] Bump lightspark-sdk to version 0.5.0 --- lightspark-sdk/README.md | 4 ++-- lightspark-sdk/gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lightspark-sdk/README.md b/lightspark-sdk/README.md index 1b815fa2..07ec7913 100644 --- a/lightspark-sdk/README.md +++ b/lightspark-sdk/README.md @@ -17,14 +17,14 @@ Start by installing the SDK from maven: **build.gradle:** ```groovy dependencies { - implementation "com.lightspark:lightspark-sdk:0.4.1" + implementation "com.lightspark:lightspark-sdk:0.5.0" } ``` or with **build.gradle.kts:** ```kotlin dependencies { - implementation("com.lightspark:lightspark-sdk:0.4.1") + implementation("com.lightspark:lightspark-sdk:0.5.0") } ``` diff --git a/lightspark-sdk/gradle.properties b/lightspark-sdk/gradle.properties index af5e212e..45b30812 100644 --- a/lightspark-sdk/gradle.properties +++ b/lightspark-sdk/gradle.properties @@ -1,7 +1,7 @@ GROUP=com.lightspark POM_ARTIFACT_ID=lightspark-sdk # Don't bump this manually. Run `scripts/versions.main.kt ` to bump the version instead. -VERSION_NAME=0.4.1 +VERSION_NAME=0.5.0 POM_DESCRIPTION=The Lightspark API SDK for Kotlin and Java. POM_INCEPTION_YEAR=2023