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 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. */