File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'OktaAuthSdk'
3
- s . version = '2.0.0 '
3
+ s . version = '2.0.1 '
4
4
s . summary = 'SDK for Okta native authentication.'
5
5
s . description = <<-DESC
6
6
Integrate your native app with Okta.
Original file line number Diff line number Diff line change 17
17
<key >CFBundlePackageType </key >
18
18
<string >FMWK </string >
19
19
<key >CFBundleShortVersionString </key >
20
- <string >2.0.0 </string >
20
+ <string >2.0.1 </string >
21
21
<key >CFBundleVersion </key >
22
22
<string >$(CURRENT_PROJECT_VERSION) </string >
23
23
</dict >
Original file line number Diff line number Diff line change @@ -16,8 +16,12 @@ import Foundation
16
16
import UIKit
17
17
#endif
18
18
19
+ public func sdkVersion( ) -> String {
20
+ return " 2.0.1 "
21
+ }
22
+
19
23
internal func buildUserAgent( ) -> String {
20
- let version = Bundle . main . object ( forInfoDictionaryKey : " CFBundleShortVersionString " ) ?? " ? "
24
+ let version = sdkVersion ( )
21
25
let device = " Device/ \( deviceModel ( ) ) "
22
26
#if os(iOS)
23
27
let os = " iOS/ \( UIDevice . current. systemVersion) "
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >BNDL </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >2.0.0 </string >
18
+ <string >2.0.1 </string >
19
19
<key >CFBundleVersion </key >
20
20
<string >1 </string >
21
21
</dict >
You can’t perform that action at this time.
0 commit comments