Skip to content

Commit

Permalink
Merge release/lightspark-sdk-v0.15.1 into main (#191)
Browse files Browse the repository at this point in the history
* lnurlp fallback

* annotation and tests

* fallback sender side

* fix serialization

* unused import

* comments

* fixes

* Try to fix docs publish job my running on main

* [gha] Use environment for doc-publish

* Fix sender vasp utxo callback

* Switch to a full 64bit nonce

* Use json for parsing in demo vasp (#163)

* Update the demo VASP's SDK version to 0.8.0

* Update the demo VASP's SDK version to 0.8.1

* Accept gzip responses, compress request with deflate (#172)

Install `ContentEncoding` plugin to handle gzip responses. Compress
requests larger than 1K using `Deflater`. Change
`addSigningDataIfNeeded()` to return serialised bytes so that we only
serialise once.

* Regenerate SDK (#173)

* Regenerate SDK

* no op vls

* Update macos environment version (#175)

* Uma data visibility (#174)

* fix typo (#176)

* encode hex (#177)

* Bump lightspark-sdk to version 0.14.0

* Load signing key

* Revert "Merge release/lightspark-sdk-v0.14.0 into develop" (#181)

* Bump lightspark-sdk to version 0.14.0

* update readme (#184)

* Update invoice creator (#185)

* Bump lightspark-sdk to version 0.15.0

* Remove default null on PayUmaInvoice (#189)

* Bump lightspark-sdk to version 0.15.1

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: shreyav <shreya@lightspark.com>
Co-authored-by: Jeremy Klein <jklein24@gmail.com>
Co-authored-by: Michael Gorven <michael@gorven.net>
Co-authored-by: Michael Gorven <mgorven@lightspark.com>
Co-authored-by: runner <runner@Mac-1720545346122.local>
Co-authored-by: runner <runner@Mac-1720552895732.local>
Co-authored-by: runner <runner@Mac-1721165625974.local>
Co-authored-by: runner <runner@Mac-1721683838949.local>
  • Loading branch information
9 people authored Jul 22, 2024
1 parent 9e0ceae commit 3cc7db6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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.15.0"
implementation "com.lightspark:lightspark-sdk:0.15.1"
}
```

or with **build.gradle.kts:**
```kotlin
dependencies {
implementation("com.lightspark:lightspark-sdk:0.15.0")
implementation("com.lightspark:lightspark-sdk:0.15.1")
}
```

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.15.0
VERSION_NAME=0.15.1

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 @@ -9,7 +9,7 @@ const val PayUmaInvoiceMutation = """
${'$'}timeout_secs: Int!
${'$'}maximum_fees_msats: Long!
${'$'}amount_msats: Long
${'$'}sender_hash: String = null
${'$'}sender_hash: String
) {
pay_uma_invoice(
input: {
Expand Down

0 comments on commit 3cc7db6

Please sign in to comment.