Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.

Commit f6eca6b

Browse files
authored
Merge pull request #196 from zeriontech/189_update_dep
Update dependencies
2 parents c007d1d + 10f5e86 commit f6eca6b

File tree

5 files changed

+42
-37
lines changed

5 files changed

+42
-37
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# * http://www.objc.io/issue-6/travis-ci.html
33
# * https://github.com/supermarin/xcpretty#usage
44

5-
osx_image: xcode9.3
5+
osx_image: xcode10.2
66
language: objective-c
77
# cache: cocoapods
88
podfile: Example/Podfile

Example/Podfile.lock

+18-14
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
PODS:
2-
- BigInt.swift (1.0.0)
3-
- CryptoSwift (0.14.0)
2+
- BigInt (3.1.0):
3+
- SipHash (~> 1.2)
4+
- CryptoSwift (1.0.0)
45
- Nimble (7.3.4)
56
- Quick (1.3.4)
6-
- secp256k1_ios (0.1.1)
7+
- secp256k1_ios (0.1.3)
8+
- SipHash (1.2.2)
79
- SwiftLint (0.25.1)
8-
- SwiftyJSON (4.1.0)
10+
- SwiftyJSON (4.3.0)
911
- Web3Swift.io (0.0.2):
10-
- BigInt.swift (= 1.0.0)
11-
- CryptoSwift (~> 0.14.0)
12-
- secp256k1_ios (= 0.1.1)
13-
- SwiftyJSON (= 4.1.0)
12+
- BigInt (~> 3.1)
13+
- CryptoSwift (~> 1.0)
14+
- secp256k1_ios (~> 0.1)
15+
- SwiftyJSON (~> 4.3)
1416

1517
DEPENDENCIES:
1618
- Nimble (~> 7.0)
@@ -20,11 +22,12 @@ DEPENDENCIES:
2022

2123
SPEC REPOS:
2224
https://github.com/cocoapods/specs.git:
23-
- BigInt.swift
25+
- BigInt
2426
- CryptoSwift
2527
- Nimble
2628
- Quick
2729
- secp256k1_ios
30+
- SipHash
2831
- SwiftyJSON
2932

3033
EXTERNAL SOURCES:
@@ -39,14 +42,15 @@ CHECKOUT OPTIONS:
3942
:git: https://github.com/Web3Swift/SwiftLint.git
4043

4144
SPEC CHECKSUMS:
42-
BigInt.swift: 1e0ddf08d82166e72dfb0fa8d40301d273081afc
43-
CryptoSwift: 35a10419f4dbf0619c13f8c1c180037e115323fa
45+
BigInt: 76b5dfdfa3e2e478d4ffdf161aeede5502e2742f
46+
CryptoSwift: d81eeaa59dc5a8d03720fe919a6fd07b51f7439f
4447
Nimble: 051e3d8912d40138fa5591c78594f95fb172af37
4548
Quick: f4f7f063c524394c73ed93ac70983c609805d481
46-
secp256k1_ios: 3c94e6cce14ff03924cb6dc10c5017f17011b79d
49+
secp256k1_ios: ac9ef04e761f43c58012b28548afa91493761f17
50+
SipHash: fad90a4683e420c52ef28063063dbbce248ea6d4
4751
SwiftLint: ce933681be10c3266e82576dad676fa815a602e9
48-
SwiftyJSON: c29297daf073d2aa016295d5809cdd68045c39b3
49-
Web3Swift.io: 6f6cfaca0eebb68743196914bdc33ef79671e551
52+
SwiftyJSON: 6faa0040f8b59dead0ee07436cbf76b73c08fd08
53+
Web3Swift.io: e22a1d2d05b6a9a5343a97305a7155c9b28c5d38
5054

5155
PODFILE CHECKSUM: da3580585a2e1577cba6b9aff6fe3cf1ca4b44d7
5256

Example/Web3Swift.xcodeproj/project.pbxproj

+8-4
Original file line numberDiff line numberDiff line change
@@ -983,8 +983,9 @@
983983
);
984984
inputPaths = (
985985
"${PODS_ROOT}/Target Support Files/Pods-Web3Swift_Tests/Pods-Web3Swift_Tests-frameworks.sh",
986-
"${BUILT_PRODUCTS_DIR}/BigInt.swift/BigInt.framework",
986+
"${BUILT_PRODUCTS_DIR}/BigInt/BigInt.framework",
987987
"${BUILT_PRODUCTS_DIR}/CryptoSwift/CryptoSwift.framework",
988+
"${BUILT_PRODUCTS_DIR}/SipHash/SipHash.framework",
988989
"${BUILT_PRODUCTS_DIR}/SwiftyJSON/SwiftyJSON.framework",
989990
"${BUILT_PRODUCTS_DIR}/Web3Swift.io/Web3Swift.framework",
990991
"${BUILT_PRODUCTS_DIR}/secp256k1_ios/secp256k1_ios.framework",
@@ -995,6 +996,7 @@
995996
outputPaths = (
996997
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/BigInt.framework",
997998
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CryptoSwift.framework",
999+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SipHash.framework",
9981000
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyJSON.framework",
9991001
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Web3Swift.framework",
10001002
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/secp256k1_ios.framework",
@@ -1075,8 +1077,9 @@
10751077
);
10761078
inputPaths = (
10771079
"${PODS_ROOT}/Target Support Files/Pods-Web3Swift_Example/Pods-Web3Swift_Example-frameworks.sh",
1078-
"${BUILT_PRODUCTS_DIR}/BigInt.swift/BigInt.framework",
1080+
"${BUILT_PRODUCTS_DIR}/BigInt/BigInt.framework",
10791081
"${BUILT_PRODUCTS_DIR}/CryptoSwift/CryptoSwift.framework",
1082+
"${BUILT_PRODUCTS_DIR}/SipHash/SipHash.framework",
10801083
"${BUILT_PRODUCTS_DIR}/SwiftyJSON/SwiftyJSON.framework",
10811084
"${BUILT_PRODUCTS_DIR}/Web3Swift.io/Web3Swift.framework",
10821085
"${BUILT_PRODUCTS_DIR}/secp256k1_ios/secp256k1_ios.framework",
@@ -1085,6 +1088,7 @@
10851088
outputPaths = (
10861089
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/BigInt.framework",
10871090
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CryptoSwift.framework",
1091+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SipHash.framework",
10881092
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyJSON.framework",
10891093
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Web3Swift.framework",
10901094
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/secp256k1_ios.framework",
@@ -1333,7 +1337,7 @@
13331337
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
13341338
GCC_WARN_UNUSED_FUNCTION = YES;
13351339
GCC_WARN_UNUSED_VARIABLE = YES;
1336-
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
1340+
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
13371341
MTL_ENABLE_DEBUG_INFO = YES;
13381342
ONLY_ACTIVE_ARCH = YES;
13391343
SDKROOT = iphoneos;
@@ -1379,7 +1383,7 @@
13791383
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
13801384
GCC_WARN_UNUSED_FUNCTION = YES;
13811385
GCC_WARN_UNUSED_VARIABLE = YES;
1382-
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
1386+
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
13831387
MTL_ENABLE_DEBUG_INFO = NO;
13841388
SDKROOT = iphoneos;
13851389
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";

README.md

+10-13
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,28 @@
55
</p>
66

77
<p align="center">
8+
<a href="https://cocoapods.org/pods/Web3Swift.io">
9+
<img src="https://img.shields.io/cocoapods/v/Web3Swift.io.svg?style=flat" alt="Version">
10+
</a>
811
<a href="https://codecov.io/gh/zeriontech/Web3Swift">
912
<img src="https://codecov.io/gh/zeriontech/Web3Swift/branch/develop/graph/badge.svg" alt="Code coverage" />
1013
</a>
1114
<a href="https://travis-ci.org/zeriontech/Web3Swift">
1215
<img src="https://travis-ci.org/zeriontech/Web3Swift.svg?branch=develop" alt="CI Status">
1316
</a>
14-
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fzeriontech%2FWeb3Swift?ref=badge_shield" alt="FOSSA Status"><img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fzeriontech%2FWeb3Swift.svg?type=shield"/></a>
15-
<a href="https://t.me/joinchat/AAiU-kcI09OSTb2y2GsJ_w">
16-
<img src="https://img.shields.io/badge/chat-on%20telegram-blue.svg?longCache=true&style=flat" alt="Join Telegram">
17-
</a>
18-
<a href="https://cocoapods.org/pods/Web3Swift.io">
19-
<img src="https://img.shields.io/cocoapods/v/Web3Swift.io.svg?style=flat" alt="Version">
20-
</a>
2117
<a href="https://opensource.org/licenses/Apache-2.0">
2218
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License">
2319
</a>
20+
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fzeriontech%2FWeb3Swift?ref=badge_shield" alt="FOSSA Status"><img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fzeriontech%2FWeb3Swift.svg?type=shield"/></a>
2421
<a href="https://twitter.com/intent/follow?screen_name=web3swift">
2522
<img src="https://img.shields.io/twitter/follow/web3swift.svg?style=flat&logo=twitter"
2623
alt="Follow on Twitter">
2724
</a>
25+
<a href="https://t.me/joinchat/AAiU-kcI09OSTb2y2GsJ_w">
26+
<img src="https://img.shields.io/badge/chat-on%20telegram-blue.svg?longCache=true&style=flat" alt="Join Telegram">
27+
</a>
2828
</p>
2929

30-
31-
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fzeriontech%2FWeb3Swift.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fzeriontech%2FWeb3Swift?ref=badge_large)
32-
3330
## Installation
3431

3532
### CocoaPods
@@ -51,13 +48,13 @@ import Web3Swift
5148
let sender: PrivateKey = EthPrivateKey(
5249
hex: "0x1636e10756e62baabddd4364010444205f1216bdb1644ff8f776f6e2982aa9f5"
5350
)
54-
51+
5552
let recipient: BytesScalar = EthAddress(
5653
hex: "0x79d2c50Ba0cA4a2C6F8D65eBa1358bEfc1cFD403"
5754
)
58-
55+
5956
let network: Network = InfuraNetwork(
60-
chain: "mainnet",
57+
chain: "mainnet",
6158
apiKey: "0c4d6dc730244b4185a6bde26f981bff"
6259
)
6360

Web3Swift.io.podspec

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Pod::Spec.new do |s|
1616
s.source = { :git => 'https://github.com/zeriontech/Web3Swift.git', :tag => s.version.to_s }
1717
s.homepage = 'https://web3swift.io'
1818

19-
s.ios.deployment_target = '9.0'
19+
s.ios.deployment_target = '10.0'
2020

2121
s.module_name = 'Web3Swift'
2222
s.source_files = 'Web3Swift/**/*'
23-
s.dependency 'SwiftyJSON', '= 4.1.0'
24-
s.dependency 'secp256k1_ios', '= 0.1.1'
25-
s.dependency 'CryptoSwift', '~> 0.14.0'
26-
s.dependency 'BigInt.swift', '= 1.0.0'
23+
s.dependency 'SwiftyJSON', '~> 4.3'
24+
s.dependency 'secp256k1_ios', '~> 0.1'
25+
s.dependency 'CryptoSwift', '~> 1.0'
26+
s.dependency 'BigInt', '~> 3.1'
2727

2828
end

0 commit comments

Comments
 (0)