Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove default null param and bump version #125

Merged
merged 1 commit into from
Jul 24, 2024
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

# v0.15.1
- Fix: Remove default null param on `PayUmaInvoice` graphql

# v0.15.0
- Add `is_uma` and `is_lnurl` to the Invoice object and `RELEASE_PAYMENT_PREIMAGE` webhook data.
- Add extra params to `CreateUmaInvoice` and `PayUmaInvoice` for analytics
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Lightspark Go SDK - v0.15.0
# Lightspark Go SDK - v0.15.1

The Lightspark Go SDK provides a convenient way to interact with the Lightspark services from applications written in
the Go.

**_WARNING: This SDK is in version 0.14.0 (active development). It means that its APIs may not be fully stable. Please
**_WARNING: This SDK is in version 0.15.1 (active development). It means that its APIs may not be fully stable. Please
expect that changes to the APIs may happen until we move to v1.0.0._**

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion scripts/pay_uma_invoice.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mutation PayUmaInvoice(
$timeout_secs: Int!
$maximum_fees_msats: Long!
$amount_msats: Long
$sender_hash: String = null
$sender_hash: String
) {
pay_uma_invoice(input: {
node_id: $node_id
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package lightspark

const VERSION = "0.15.0"
const VERSION = "0.15.1"
Loading