File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Pokepay"
3
- s . version = "2.0.16 "
3
+ s . version = "2.0.17 "
4
4
s . summary = "Pokepay iOS SDK."
5
5
s . description = <<-DESC
6
6
iOS SDK for Pokepay written in Swift.
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >2.0.16 </string >
18
+ <string >2.0.17 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 1
1
import Foundation
2
2
3
- public class BankAPIJSONDecoder : JSONDecoder {
4
- public let dateFormatter = DateFormatter ( )
3
+ public class BankAPIJSONDecoder : JSONDecoder , @unchecked Sendable {
4
+ public let dateFormatter = DateFormatter ( )
5
+
5
6
override public init ( ) {
6
7
super. init ( )
7
8
dateFormatter. dateFormat = " yyyy-MM-dd'T'HH:mm:ss.SSSSSS'Z' "
8
9
dateFormatter. timeZone = TimeZone ( secondsFromGMT: 0 )
9
10
dateFormatter. locale = Locale ( identifier: " en_US_POSIX " )
10
11
dateDecodingStrategy = . formatted( dateFormatter)
11
12
}
12
- }
13
+ }
You can’t perform that action at this time.
0 commit comments