Skip to content

Commit

Permalink
Update Swift bindings to version 0.1.3-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK release tagger committed Jul 17, 2024
1 parent 0d96637 commit 3003beb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BreezSDKLiquid.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "BreezSDKLiquid"
spec.version = "0.1.3-rc1"
spec.version = "0.1.3-rc2"
spec.license = { :type => "MIT" }
spec.summary = "Swift bindings to the Breez Liquid SDK"
spec.homepage = "https://breez.technology"
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
.library(name: "BreezSDKLiquid", targets: ["breez_sdk_liquidFFI", "BreezSDKLiquid"]),
],
targets: [
.binaryTarget(name: "breez_sdk_liquidFFI", url: "https://github.com/breez/breez-sdk-liquid-swift/releases/download/0.1.3-rc1/breez_sdk_liquidFFI.xcframework.zip", checksum: "e5cbe1c06e5298555c92857db35e659cdec3e724bba4e1b3bf41296152d191c9"),
.binaryTarget(name: "breez_sdk_liquidFFI", url: "https://github.com/breez/breez-sdk-liquid-swift/releases/download/0.1.3-rc2/breez_sdk_liquidFFI.xcframework.zip", checksum: "46d83606d08f536ec6b733580a19b1c428cf04a043363fc26d0346d4c6bf2eb3"),
.target(name: "BreezSDKLiquid", dependencies: ["breez_sdk_liquidFFI"]),
]
)
2 changes: 1 addition & 1 deletion Sources/BreezSDKLiquid/BreezSDKLiquid.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2897,7 +2897,7 @@ public struct PreparePayOnchainRequest {

// Default memberwise initializers are never public by default, so we
// declare one manually.
public init(receiverAmountSat: UInt64, satPerVbyte: UInt32?) {
public init(receiverAmountSat: UInt64, satPerVbyte: UInt32? = nil) {
self.receiverAmountSat = receiverAmountSat
self.satPerVbyte = satPerVbyte
}
Expand Down
2 changes: 1 addition & 1 deletion breez_sdk_liquidFFI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "breez_sdk_liquidFFI"
spec.version = "0.1.3-rc1"
spec.version = "0.1.3-rc2"
spec.license = { :type => "MIT" }
spec.summary = "Low-level bindings to the Breez Liquid SDK Rust API"
spec.homepage = "https://breez.technology"
Expand Down

0 comments on commit 3003beb

Please sign in to comment.