Skip to content

Commit 6de791b

Browse files
authored
Merge pull request #85 from pokepay/version/2.0.17
Update version to 2.0.17
2 parents e3fc256 + c98dd8e commit 6de791b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Pokepay.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Pokepay"
3-
s.version = "2.0.16"
3+
s.version = "2.0.17"
44
s.summary = "Pokepay iOS SDK."
55
s.description = <<-DESC
66
iOS SDK for Pokepay written in Swift.

Pokepay.xcodeproj/Pokepay_Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.16</string>
18+
<string>2.0.17</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import Foundation
22

3-
public class BankAPIJSONDecoder : JSONDecoder {
4-
public let dateFormatter = DateFormatter()
3+
public class BankAPIJSONDecoder: JSONDecoder, @unchecked Sendable {
4+
public let dateFormatter = DateFormatter()
5+
56
override public init() {
67
super.init()
78
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSSSS'Z'"
89
dateFormatter.timeZone = TimeZone(secondsFromGMT: 0)
910
dateFormatter.locale = Locale(identifier: "en_US_POSIX")
1011
dateDecodingStrategy = .formatted(dateFormatter)
1112
}
12-
}
13+
}

0 commit comments

Comments
 (0)