Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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 KindeSDK-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>SDKVersionString</key>
<string>1.2.0</string>
<string>2.3.1</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion Sources/KindeSDK/Auth/Auth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ public final class Auth {
return nil
}

let params = ["Kinde-SDK": "Swift/\(SDKVersion.versionString)"]
let params = ["Kinde-SDK": "Python/\(SDKVersion.versionString)"]
return try await withCheckedThrowingContinuation { continuation in
authState.performAction(freshTokens: { (accessToken, idToken, error1) in
if let error = error1 {
Expand Down
2 changes: 1 addition & 1 deletion Sources/KindeSDK/Utils/SDKVersion.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
struct SDKVersion {
static var versionString: String {
PList.value(forKey: "SDKVersionString", from: "info") as? String ?? "1.2.0"
PList.value(forKey: "SDKVersionString", from: "info") as? String ?? "2.3.1"
}
}