Skip to content

Commit

Permalink
Revert "Freeze compatiable dependencies versions."
Browse files Browse the repository at this point in the history
This reverts commit f8a9da2.
  • Loading branch information
yaroslavyaroslav committed May 6, 2022
1 parent ed30743 commit 0e2e84c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github "attaswift/BigInt" == 5.3.0
github "attaswift/SipHash" == 1.2.2
github "daltoniam/Starscream" == 4.0.4
github "krzyzanowskim/CryptoSwift" == 1.5.1
github "mxcl/PromiseKit" == 6.16.2
github "attaswift/BigInt" ~> 5.3.0
github "attaswift/SipHash" ~> 1.2.2
github "daltoniam/Starscream" ~> 4.0.4
github "krzyzanowskim/CryptoSwift" ~> 1.5.1
github "mxcl/PromiseKit" ~> 6.16.2
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ let package = Package(
],

dependencies: [
.package(url: "https://github.com/attaswift/BigInt.git", .upToNextMinor(from: "5.3.0")),
.package(url: "https://github.com/mxcl/PromiseKit.git", .upToNextMinor(from: "6.16.2")),
.package(url: "https://github.com/daltoniam/Starscream.git", .upToNextMinor(from: "4.0.4")),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.5.1"))
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.16.2"),
.package(url: "https://github.com/daltoniam/Starscream.git", from: "4.0.4"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.5.1")
],
targets: [
.target(name: "secp256k1"),
Expand Down
10 changes: 5 additions & 5 deletions web3swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'web3swift'
spec.version = '2.6.4'
spec.version = '2.6.3'
spec.ios.deployment_target = "9.0"
spec.osx.deployment_target = "10.12"
spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE.md' }
Expand All @@ -13,9 +13,9 @@ Pod::Spec.new do |spec|
spec.resource_bundle = { "Browser" => "Sources/web3swift/Browser/*.js" }
spec.swift_version = '5.0'
spec.frameworks = 'CoreImage'
spec.dependency 'BigInt', '5.2.0'
spec.dependency 'Starscream', '4.0.4'
spec.dependency 'CryptoSwift', '1.4.3'
spec.dependency 'BigInt', '~> 5.2.0'
spec.dependency 'Starscream', '~> 4.0.4'
spec.dependency 'CryptoSwift', '~> 1.5.1'
spec.dependency 'secp256k1.c', '~> 0.1'
spec.dependency 'PromiseKit', '6.15.3'
spec.dependency 'PromiseKit', '~> 6.15.3'
end

0 comments on commit 0e2e84c

Please sign in to comment.