Skip to content

Commit 8ab3dc8

Browse files
committed
updated minimum deployment target
1 parent e8ac036 commit 8ab3dc8

File tree

443 files changed

+165
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

443 files changed

+165
-167
lines changed

Package.resolved

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"repositoryURL": "https://github.com/torusresearch/fetch-node-details-swift",
3434
"state": {
3535
"branch": null,
36-
"revision": "172efe5e39c525927142b457b826a250fa0dfe07",
37-
"version": "0.1.1"
36+
"revision": "7d93d8c98d45c723d4836e9406282dda237e48cb",
37+
"version": "0.1.2"
3838
}
3939
},
4040
{

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
dependencies: [
1414
.package(url: "https://github.com/rathishubham7/web3swift", from:"2.0.0"),
1515
.package(url: "https://github.com/rathishubham7/swift-logger", from:"0.0.1"),
16-
.package(url: "https://github.com/torusresearch/fetch-node-details-swift", from:"0.0.1"),
16+
.package(url: "https://github.com/torusresearch/fetch-node-details-swift", from:"0.1.0"),
1717
.package(url: "https://github.com/PromiseKit/Foundation.git", from: "3.0.0"),
1818
.package(url: "https://github.com/IBM-Swift/BlueECC.git", from: "1.2.4"),
1919
],

Sources/TorusUtils/Extensions/TorusUtils+extension.swift

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import BigInt
1818
import CryptoSwift
1919
import web3swift
2020

21-
@available(iOS 12.0, *)
2221
extension TorusUtils {
2322

2423
// MARK:- torus utils

Sources/TorusUtils/TorusUtils.swift

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import CryptoSwift
1414
import BigInt
1515
import BestLogger
1616

17-
@available(iOS 12.0, *)
1817
public class TorusUtils{
1918
static let context = secp256k1_context_create(UInt32(SECP256K1_CONTEXT_SIGN|SECP256K1_CONTEXT_VERIFY))
2019
let nodePubKeys: Array<TorusNodePub>

Example/TestApplication/Podfile renamed to cocoapods/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ target 'TestApplication' do
55
# Comment the next line if you don't want to use dynamic frameworks
66
use_frameworks!
77
# pod 'Torus-fetchNodeDetails', :git=>'https://github.com/torusresearch/fetch-node-details-swift'
8-
pod "Torus-utils", :path => '../../'
8+
pod "Torus-utils", :path => '../'
99
# Pods for TestApplication
1010

1111

Example/TestApplication/Podfile.lock renamed to cocoapods/Podfile.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ PODS:
1313
- PromiseKit/CorePromise
1414
- secp256k1.c (0.1.2)
1515
- Starscream (3.1.1)
16-
- Torus-fetchNodeDetails (0.1.0):
16+
- Torus-fetchNodeDetails (0.0.20):
1717
- BestLogger (~> 0.0.1)
1818
- web3swift (~> 2.3.0)
1919
- Torus-utils (0.1.1):
2020
- BestLogger (~> 0.0.1)
2121
- PromiseKit/Foundation (~> 6.0)
22-
- Torus-fetchNodeDetails (~> 0.1.0)
22+
- Torus-fetchNodeDetails (~> 0.0.1)
2323
- web3swift (2.3.0):
2424
- BigInt (~> 4.0)
2525
- CryptoSwift (~> 1.0.0)
@@ -28,7 +28,7 @@ PODS:
2828
- Starscream (~> 3.1.0)
2929

3030
DEPENDENCIES:
31-
- Torus-utils (from `../../`)
31+
- Torus-utils (from `../`)
3232

3333
SPEC REPOS:
3434
trunk:
@@ -43,7 +43,7 @@ SPEC REPOS:
4343

4444
EXTERNAL SOURCES:
4545
Torus-utils:
46-
:path: "../../"
46+
:path: "../"
4747

4848
SPEC CHECKSUMS:
4949
BestLogger: 70475db073dfab3ec1ba9b58b0bb78126b068eee
@@ -52,10 +52,10 @@ SPEC CHECKSUMS:
5252
PromiseKit: 9616b0afef31eae56ab9ce044c8ec2b8612a15cd
5353
secp256k1.c: db47b726585d80f027423682eb369729e61b3b20
5454
Starscream: 4bb2f9942274833f7b4d296a55504dcfc7edb7b0
55-
Torus-fetchNodeDetails: d04806e1befa430d920cd538ad1aef2ca5332622
56-
Torus-utils: c1df3ec0720c7bb9c1666395b588bed603ffd1f8
55+
Torus-fetchNodeDetails: 567d0c73c1b318c8811abcef0b2f31cfdcd5a4a4
56+
Torus-utils: cd8ac44a3397d1dac0132ca414478f9dd55a8825
5757
web3swift: 0f097eafe1d08f478694b882581b85a01afb6633
5858

59-
PODFILE CHECKSUM: 06ce0718f4492f3ce5d67cd4472ed09aacc8b3e0
59+
PODFILE CHECKSUM: de6dc705fbcaee4478a78e83fe706aec34cc08c1
6060

6161
COCOAPODS: 1.10.1

Example/TestApplication/Pods/Local Podspecs/Torus-utils.podspec.json renamed to cocoapods/Pods/Local Podspecs/Torus-utils.podspec.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/TestApplication/Pods/Manifest.lock renamed to cocoapods/Pods/Manifest.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)