Skip to content

Commit e58fef3

Browse files
github-actions[bot]jklein24matthappensjoelweinbergerJasonCWang
authored
Merge release/lightspark-sdk-v0.19.1 into main (#222)
This PR was automatically created by the release branch cut workflow.\nSDK=lightspark-sdk\nVERSION=0.19.1 --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jeremy Klein <[email protected]> Co-authored-by: Matt Davis <[email protected]> Co-authored-by: Matt Davis <[email protected]> Co-authored-by: Joel Weinberger <[email protected]> Co-authored-by: Jason Wang <[email protected]> Co-authored-by: Jason Wang <[email protected]> Co-authored-by: runner <[email protected]> Co-authored-by: runner <[email protected]>
1 parent 97aa6e8 commit e58fef3

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

lightspark-sdk/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Start by installing the SDK from maven:
1717
**build.gradle:**
1818
```groovy
1919
dependencies {
20-
implementation "com.lightspark:lightspark-sdk:0.19.0"
20+
implementation "com.lightspark:lightspark-sdk:0.19.1"
2121
}
2222
```
2323

2424
or with **build.gradle.kts:**
2525
```kotlin
2626
dependencies {
27-
implementation("com.lightspark:lightspark-sdk:0.19.0")
27+
implementation("com.lightspark:lightspark-sdk:0.19.1")
2828
}
2929
```
3030

lightspark-sdk/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GROUP=com.lightspark
22
POM_ARTIFACT_ID=lightspark-sdk
33
# Don't bump this manually. Run `scripts/versions.main.kt <new_version>` to bump the version instead.
4-
VERSION_NAME=0.19.0
4+
VERSION_NAME=0.19.1
55

66
POM_DESCRIPTION=The Lightspark API SDK for Kotlin and Java.
77
POM_INCEPTION_YEAR=2023

lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ query OutgoingPaymentForIdempotencyKey(
77
${'$'}idempotency_key: String!
88
) {
99
outgoing_payment_for_idempotency_key(input: {
10-
idempotency_key: ${'$'}idempotency_key,
11-
statuses: ${'$'}transactionStatuses
10+
idempotency_key: ${'$'}idempotency_key
1211
}) {
1312
payment {
1413
...OutgoingPaymentFragment

0 commit comments

Comments
 (0)