Skip to content

Commit dff6562

Browse files
Freeze dependencies versions
1 parent b8de0b6 commit dff6562

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

Cartfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "attaswift/BigInt" ~> 5.3.0
2-
github "attaswift/SipHash" ~> 1.2.2
3-
github "daltoniam/Starscream" ~> 4.0.4
4-
github "krzyzanowskim/CryptoSwift" ~> 1.5.1
5-
github "mxcl/PromiseKit" ~> 6.16.2
1+
github "attaswift/BigInt" == 5.3.0
2+
github "attaswift/SipHash" == 1.2.2
3+
github "daltoniam/Starscream" == 4.0.4
4+
github "krzyzanowskim/CryptoSwift" == 1.5.1
5+
github "mxcl/PromiseKit" == 6.16.2

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ let package = Package(
2121
],
2222

2323
dependencies: [
24-
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
25-
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.16.2"),
26-
.package(url: "https://github.com/daltoniam/Starscream.git", from: "4.0.4"),
27-
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.5.1")
24+
.package(url: "https://github.com/attaswift/BigInt.git", .upToNextMinor(from: "5.3.0")),
25+
.package(url: "https://github.com/mxcl/PromiseKit.git", .upToNextMinor(from: "6.16.2")),
26+
.package(url: "https://github.com/daltoniam/Starscream.git", .upToNextMinor(from: "4.0.4")),
27+
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.5.1"))
2828
],
2929
targets: [
3030
.target(name: "secp256k1"),

web3swift.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Pod::Spec.new do |spec|
1313
spec.resource_bundle = { "Browser" => "Sources/web3swift/Browser/*.js" }
1414
spec.swift_version = '5.0'
1515
spec.frameworks = 'CoreImage'
16-
spec.dependency 'BigInt', '~> 5.2.0'
17-
spec.dependency 'Starscream', '~> 4.0.4'
18-
spec.dependency 'CryptoSwift', '~> 1.5.1'
19-
spec.dependency 'secp256k1.c', '~> 0.1'
20-
spec.dependency 'PromiseKit', '~> 6.15.3'
16+
spec.dependency 'BigInt', '5.2.0'
17+
spec.dependency 'Starscream', '4.0.4'
18+
spec.dependency 'CryptoSwift', '1.5.1'
19+
spec.dependency 'secp256k1.c', '0.1.2'
20+
spec.dependency 'PromiseKit', '6.15.3'
2121
end

0 commit comments

Comments
 (0)