Skip to content

Commit 4eadb32

Browse files
Merge pull request #24 from torusresearch/update_minimum_version
update_minimum_ios_version
2 parents 508e6df + 7156d73 commit 4eadb32

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Package.resolved

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import PackageDescription
33

44
let package = Package(
55
name: "tss-client-swift",
6-
platforms: [.iOS(.v13), .macOS(.v10_15)],
6+
platforms: [.iOS(.v14), .macOS(.v10_15)],
77
products: [
88
.library(
99
name: "tssClientSwift",
1010
targets: ["tssClientSwift"]),
1111
],
1212
dependencies: [
1313
.package(name: "BigInt", url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
14-
.package(name: "curvelib.swift", url: "https://github.com/tkey/curvelib.swift", from: "1.0.1"),
15-
.package(name: "SocketIO", url: "https://github.com/socketio/socket.io-client-swift", .upToNextMajor(from: "16.0.1")),
14+
.package(name: "curvelib.swift", url: "https://github.com/tkey/curvelib.swift", from: "2.0.0"),
15+
.package(name: "SocketIO", url: "https://github.com/socketio/socket.io-client-swift", from: "16.1.1"),
1616
],
1717
targets: [
1818
.binaryTarget(name: "libdkls",

tss-client-swift.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "tss-client-swift"
3-
spec.version = "4.0.0"
3+
spec.version = "5.0.0"
44
spec.ios.deployment_target = '13.0'
55
spec.summary = "MPC TSS Client"
66
spec.homepage = "https://web3auth.io/"
@@ -10,9 +10,9 @@ Pod::Spec.new do |spec|
1010
spec.source = { :git => "https://github.com/torusresearch/tss-client-swift.git", :tag => spec.version }
1111
spec.source_files = "Sources/**/*.{swift,h,c}"
1212
spec.vendored_frameworks = "Sources/libdkls/libdkls.xcframework"
13-
spec.dependency 'curvelib.swift', '~> 1.0.1'
13+
spec.dependency 'curvelib.swift', '~> 2.0.0'
1414
spec.dependency 'BigInt', '~> 5.2.0'
15-
spec.dependency 'Socket.IO-Client-Swift', '16.1.0'
15+
spec.dependency 'Socket.IO-Client-Swift', '16.1.1'
1616
spec.dependency "Starscream", "4.0.6"
1717
spec.module_name = "tssClientSwift"
1818
end

0 commit comments

Comments
 (0)