Skip to content

Commit

Permalink
Bump the SDK version to 0.10.0 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
jklein24 authored Feb 23, 2024
2 parents 8d0b927 + ebf28f3 commit d2ba5d8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

# 0.10.0
- Add `FetchIncomingPaymentsByInvoice` to the client.
- Return the whole payment object when fetching payments for an invoice.
- Some tweaks to the `ChannelSnapshot` object.
- Adding more documentation.

# 0.9.1
- Fix a bug for fetching outgoing payments for an invoice.

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.9.1
# Lightspark Go SDK - v0.10.0

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.9.0 (active development). It means that its APIs may not be fully stable. Please
**_WARNING: This SDK is in version 0.10.0 (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 examples/lnurl-server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.20

require (
github.com/gin-gonic/gin v1.9.1
github.com/lightsparkdev/go-sdk v0.9.0
github.com/lightsparkdev/go-sdk v0.10.0
)

require (
Expand Down
2 changes: 1 addition & 1 deletion examples/remote-signing-server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.20

require (
github.com/gin-gonic/gin v1.9.1
github.com/lightsparkdev/go-sdk v0.9.0
github.com/lightsparkdev/go-sdk v0.10.0
)

require (
Expand Down
2 changes: 1 addition & 1 deletion examples/uma-server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.21.0
require (
github.com/gin-gonic/gin v1.9.1
github.com/google/uuid v1.3.1
github.com/lightsparkdev/go-sdk v0.9.0
github.com/lightsparkdev/go-sdk v0.10.0
github.com/uma-universal-money-address/uma-go-sdk v0.6.2
)

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.9.1"
const VERSION = "0.10.0"

0 comments on commit d2ba5d8

Please sign in to comment.