Skip to content

Commit c8c7763

Browse files
πŸ”„ synced file(s) with circlefin/modularwallets-ios-sdk-dev (#27)
1 parent 7338afb commit c8c7763

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

β€ŽCircleModularWalletsCore/Resources/Info.plistβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>CFBundleShortVersionString</key>
6-
<string>1.4.0</string>
6+
<string>1.4.1</string>
77
<key>CFBundleIdentifier</key>
88
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
99
<key>CFBundleName</key>

β€ŽCircleModularWalletsCore/Sources/Helpers/Extensions/Bundle+Extension.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Foundation
2121
#if SWIFT_PACKAGE
2222
extension Bundle {
2323
public enum SDK {
24-
public static let version = "1.4.0" // x-release-please-version
24+
public static let version = "1.4.1" // x-release-please-version
2525
}
2626
}
2727
#else

β€ŽCircleModularWalletsCore/Sources/Helpers/Utils/Utils.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public struct Utils {
9494
signature: String,
9595
webauthn: WebAuthnData) throws -> Bool {
9696
do {
97-
let rawClientData = webauthn.clientDataJSON.bytes
97+
let rawClientData = try webauthn.clientDataJSON.bytes
9898
let clientData = try JSONDecoder().decode(CollectedClientData.self, from: Data(rawClientData))
9999
let rawAuthenticatorData = try HexUtils.hexToBytes(hex: webauthn.authenticatorData)
100100
let authenticatorData = try AuthenticatorData(bytes: rawAuthenticatorData)

β€ŽPackage.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ let package = Package(
3131
],
3232
dependencies: [
3333
.package(url: "https://github.com/valpackett/SwiftCBOR.git", .upToNextMinor(from: "0.4.7")),
34-
.package(url: "https://github.com/web3swift-team/web3swift.git", .upToNextMinor(from: "3.2.2"))
34+
.package(url: "https://github.com/web3swift-team/web3swift.git", .upToNextMinor(from: "3.3.2"))
3535
],
3636
targets: [
3737
.target(

0 commit comments

Comments
Β (0)