Skip to content

Commit e3cae14

Browse files
authored
Merge pull request #116 from auth0/chore/update-deps
Updated dependencies
2 parents d80114b + 7a9da99 commit e3cae14

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

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

Cartfile.private

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "Quick/Quick" ~> 3.0
1+
github "Quick/Quick" ~> 4.0
22
github "Quick/Nimble" ~> 9.0

Cartfile.resolved

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "Quick/Nimble" "v9.0.0"
2-
github "Quick/Quick" "v3.1.2"
1+
github "Quick/Nimble" "v9.2.1"
2+
github "Quick/Quick" "v4.0.0"

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let package = Package(
1818
)
1919
],
2020
dependencies: [
21-
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
21+
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "4.0.0")),
2222
.package(name: "Nimble", url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0"))
2323
],
2424
targets: [

SimpleKeychain/A0SimpleKeychain.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ - (NSString*)stringForSecStatus:(OSStatus)status {
296296
case errSecDecode:
297297
return NSLocalizedStringFromTable(@"errSecDecode: Unable to decode the provided data", @"SimpleKeychain", @"Possible error from keychain. ");
298298
default:
299-
return [NSString stringWithFormat:NSLocalizedStringFromTable(@"Unknown error code %d", @"SimpleKeychain", @"Possible error from keychain. "), status];
299+
return [NSString stringWithFormat:NSLocalizedStringFromTable(@"Unknown error code %d", @"SimpleKeychain", @"Possible error from keychain. "), (int)status];
300300
}
301301
}
302302

0 commit comments

Comments
 (0)