Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lightspark-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion lightspark-sdk/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GROUP=com.lightspark
POM_ARTIFACT_ID=lightspark-sdk
# Don't bump this manually. Run `scripts/versions.main.kt <new_version>` 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
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down