Skip to content

Commit 13f255f

Browse files
AnkaAnka
authored andcommitted
Bump Liquid Wallet Kit to version 0.8.2
1 parent ffbe7ac commit 13f255f

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

LiquidWalletKit.podspec

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "LiquidWalletKit"
3+
spec.version = "0.8.2"
4+
spec.license = { :type => "MIT OR BSD-2-Clause" }
5+
spec.summary = "Swift bindings to the Liquid Wallet Kit"
6+
spec.homepage = "https://blockstream.com"
7+
spec.authors = { "Riccardo Casatta" => "riccardo@casatta.it", "Luca Vaccaro" => "me@lvaccaro.com" }
8+
spec.documentation_url = "https://docs.rs/lwk_bindings"
9+
spec.source = { :git => 'https://github.com/Blockstream/lwk-swift.git', :tag => spec.version }
10+
spec.ios.deployment_target = "13.0"
11+
spec.source_files = [
12+
"Sources/LiquidWalletKit/*.swift",
13+
"Sources/LiquidWalletKit/**/*.swift"
14+
]
15+
spec.static_framework = true
16+
17+
spec.dependency "lwkFFI", "= #{spec.version}"
18+
end

Package.swift

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// swift-tools-version:5.5
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "lwk_bindings",
8+
platforms: [
9+
.macOS(.v12),
10+
.iOS(.v13),
11+
],
12+
products: [
13+
.library(name: "LiquidWalletKit", targets: ["lwkFFI", "LiquidWalletKit"]),
14+
],
15+
targets: [
16+
.binaryTarget(name: "lwkFFI", url: "https://github.com/Blockstream/lwk-swift/releases/download/0.8.2/lwkFFI.xcframework.zip", checksum: ""),
17+
.target(name: "LiquidWalletKit", dependencies: ["lwkFFI"]),
18+
]
19+
)

lwkFFI.podspec

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "lwkFFI"
3+
spec.version = "0.8.2"
4+
spec.license = { :type => "MIT OR BSD-2-Clause" }
5+
spec.summary = "Low-level bindings to the Liquid Wallet Kit Rust API"
6+
spec.homepage = "https://blockstream.com"
7+
spec.authors = { "Riccardo Casatta" => "riccardo@casatta.it", "Luca Vaccaro" => "me@lvaccaro.com" }
8+
spec.documentation_url = "https://docs.rs/lwk_bindings"
9+
spec.source = { :http => "https://github.com/Blockstream/lwk-swift/releases/download/0.8.2/lwkFFI.xcframework.zip" }
10+
spec.ios.deployment_target = "13.0"
11+
spec.vendored_frameworks = "lwkFFI.xcframework"
12+
end

0 commit comments

Comments
 (0)