Skip to content

Commit

Permalink
Bump Liquid Wallet Kit to version 0.8.2-1
Browse files Browse the repository at this point in the history
  • Loading branch information
lvaccaro committed Dec 19, 2024
1 parent bc345e9 commit a32f77e
Show file tree
Hide file tree
Showing 4 changed files with 2,296 additions and 1,214 deletions.
18 changes: 18 additions & 0 deletions LiquidWalletKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |spec|
spec.name = "LiquidWalletKit"
spec.version = "0.8.2-1"
spec.license = { :type => "MIT OR BSD-2-Clause" }
spec.summary = "Swift bindings to the Liquid Wallet Kit"
spec.homepage = "https://blockstream.com"
spec.authors = { "Riccardo Casatta" => "[email protected]", "Luca Vaccaro" => "[email protected]" }
spec.documentation_url = "https://docs.rs/lwk_bindings"
spec.source = { :git => 'https://github.com/Blockstream/lwk-swift.git', :tag => spec.version }
spec.ios.deployment_target = "13.0"
spec.source_files = [
"Sources/LiquidWalletKit/*.swift",
"Sources/LiquidWalletKit/**/*.swift"
]
spec.static_framework = true

spec.dependency "lwkFFI", "= #{spec.version}"
end
19 changes: 19 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "lwk_bindings",
platforms: [
.macOS(.v12),
.iOS(.v13),
],
products: [
.library(name: "LiquidWalletKit", targets: ["lwkFFI", "LiquidWalletKit"]),
],
targets: [
.binaryTarget(name: "lwkFFI", url: "https://github.com/Blockstream/lwk-swift/releases/download/0.8.2-1/lwkFFI.xcframework.zip", checksum: "9d2d08c4f4d61b98848bc467ab01cbbade33c8cfe72fde508d8c85872246e2f2"),
.target(name: "LiquidWalletKit", dependencies: ["lwkFFI"]),
]
)
Loading

0 comments on commit a32f77e

Please sign in to comment.