Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CircleModularWalletsCore/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>CFBundleShortVersionString</key>
<string>1.4.0</string>
<string>1.4.1</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleName</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import Foundation
#if SWIFT_PACKAGE
extension Bundle {
public enum SDK {
public static let version = "1.4.0" // x-release-please-version
public static let version = "1.4.1" // x-release-please-version
}
}
#else
Expand Down
2 changes: 1 addition & 1 deletion CircleModularWalletsCore/Sources/Helpers/Utils/Utils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public struct Utils {
signature: String,
webauthn: WebAuthnData) throws -> Bool {
do {
let rawClientData = webauthn.clientDataJSON.bytes
let rawClientData = try webauthn.clientDataJSON.bytes
let clientData = try JSONDecoder().decode(CollectedClientData.self, from: Data(rawClientData))
let rawAuthenticatorData = try HexUtils.hexToBytes(hex: webauthn.authenticatorData)
let authenticatorData = try AuthenticatorData(bytes: rawAuthenticatorData)
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/valpackett/SwiftCBOR.git", .upToNextMinor(from: "0.4.7")),
.package(url: "https://github.com/web3swift-team/web3swift.git", .upToNextMinor(from: "3.2.2"))
.package(url: "https://github.com/web3swift-team/web3swift.git", .upToNextMinor(from: "3.3.2"))
],
targets: [
.target(
Expand Down
Loading