Skip to content

Commit 01c9e13

Browse files
authored
Merge pull request #108 from OpenZesame/updating_version
Release candidat 1.0.2
2 parents 6d4ce27 + 6685d3d commit 01c9e13

13 files changed

Lines changed: 16 additions & 219 deletions

File tree

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use_modular_headers!
44

55
def shared
66
# The Zilliqa Swift SDK
7-
pod 'Zesame', :git => 'https://github.com/OpenZesame/Zesame.git', :branch => 'decimal_amount'
7+
pod 'Zesame', '~> 1.0.1'
88

99
# Used for Crash reporting
1010
pod 'Firebase/Core'

Podfile.lock

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ PODS:
8787
- SwiftyBeaver (1.6.2)
8888
- TinyConstraints (3.3.1)
8989
- Validator (3.1.1)
90-
- Zesame (1.0.0):
90+
- Zesame (1.0.1):
9191
- Alamofire (~> 5.0.0-beta.4)
9292
- BigInt (~> 4.0.0)
9393
- CryptoSwift (~> 1.0.0)
@@ -116,7 +116,7 @@ DEPENDENCIES:
116116
- SwiftyBeaver
117117
- TinyConstraints
118118
- Validator
119-
- Zesame (from `https://github.com/OpenZesame/Zesame.git`, branch `decimal_amount`)
119+
- Zesame (~> 1.0.1)
120120

121121
SPEC REPOS:
122122
https://github.com/cocoapods/specs.git:
@@ -154,16 +154,7 @@ SPEC REPOS:
154154
- SwiftyBeaver
155155
- TinyConstraints
156156
- Validator
157-
158-
EXTERNAL SOURCES:
159-
Zesame:
160-
:branch: decimal_amount
161-
:git: https://github.com/OpenZesame/Zesame.git
162-
163-
CHECKOUT OPTIONS:
164-
Zesame:
165-
:commit: 8da70b2c224da9d186867cf462078b5603f1d21c
166-
:git: https://github.com/OpenZesame/Zesame.git
157+
- Zesame
167158

168159
SPEC CHECKSUMS:
169160
Alamofire: cd08a4402bd12cacd0c66f23fb12fec8d6b965e4
@@ -200,8 +191,8 @@ SPEC CHECKSUMS:
200191
SwiftyBeaver: 8e67ab3cd94389cbbb7a9c7cc02748d98bfee68e
201192
TinyConstraints: dbf7519aefc01ea59d62244300c7718aec68e280
202193
Validator: b34ab17a8fffd0c1ffd8f9002ead4d1e02cd9e6e
203-
Zesame: c7bbd6548ef648af5480338f37a94bd4fe0bc4e3
194+
Zesame: 33728cc171403a8f48c08985ce8375bae9d8faba
204195

205-
PODFILE CHECKSUM: 1fe225be0adb22d399a61c5e12f3713681222bb3
196+
PODFILE CHECKSUM: c1b20b1e99cdedab5a61d43b103b44a947a887ec
206197

207198
COCOAPODS: 1.6.1

Pods/Local Podspecs/BigInt.podspec.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

Pods/Local Podspecs/CryptoSwift.podspec.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

Pods/Local Podspecs/Zesame.podspec.json

Lines changed: 0 additions & 43 deletions
This file was deleted.

Pods/Manifest.lock

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

Pods/Zesame/Source/Models/Manual/Payment/Payment.swift

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

Source/Application/AppCoordinator.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,7 @@ extension AppCoordinator {
160160
private extension AppCoordinator {
161161

162162
func lockApp() {
163-
print("🔐 Trying to lock app")
164163
if isCurrentlyPresentingUnLockScene || isCurrentlyPresentingLockScene {
165-
print("🙅🏻‍♀️ Avoided locking app 🔒")
166164
return
167165
}
168166
deepLinkHandler.appIsLockedBufferDeeplinks()
@@ -172,7 +170,6 @@ private extension AppCoordinator {
172170
func unlockApp() {
173171
if isCurrentlyPresentingUnLockScene { return }
174172
guard isCurrentlyPresentingLockScene else { return }
175-
print("🔓 Trying to unlock app")
176173
if hasConfiguredPincode {
177174
toUnlockAppWithPincodeIfNeeded()
178175
} else {

Source/Application/InputValidators/Validators/AmountValidator.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ enum AmountError<ConvertTo: ExpressibleByAmount>: Swift.Error, InputError {
8888
case .tooLarge(let max, let unit): return.tooLarge("\(max.thousands) \(unit.name)")
8989
case .tooSmall(let min, let unit): return.tooSmall("\(min.thousands) \(unit.name)")
9090
case .nonNumericString: return.nonNumericString
91-
case .other(let anyError):
92-
return.nonNumericString // TODO which error message to display?
91+
case .other: return.nonNumericString // TODO which error message to display?
9392
}
9493
}
9594
}

Source/Application/Zhip-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.1</string>
18+
<string>1.0.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>15</string>
2121
<key>ITSAppUsesNonExemptEncryption</key>

0 commit comments

Comments
 (0)