Skip to content

Commit

Permalink
Switch to a minor version update
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenachbaur-okta committed Nov 14, 2024
1 parent 824898b commit fa5d818
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion OktaAuthFoundation.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "OktaAuthFoundation"
s.module_name = "AuthFoundation"
s.version = "1.8.3"
s.version = "1.9.0"
s.summary = "Okta Authentication Foundation"
s.description = <<-DESC
Provides the foundation and common features used to authenticate users, managing the lifecycle and storage of tokens and credentials, and provide a base for other Okta SDKs to build upon.
Expand Down
2 changes: 1 addition & 1 deletion OktaDirectAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OktaDirectAuth"
s.version = "1.8.3"
s.version = "1.9.0"
s.summary = "Okta Direct Authentication"
s.description = <<-DESC
Enables application developers to build native sign in experiences using the Okta Direct Authentication API.
Expand Down
2 changes: 1 addition & 1 deletion OktaOAuth2.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OktaOAuth2"
s.version = "1.8.3"
s.version = "1.9.0"
s.summary = "Okta OAuth2 Authentication"
s.description = <<-DESC
Enables application developers to authenticate users utilizing a variety of OAuth2 authentication flows.
Expand Down
2 changes: 1 addition & 1 deletion OktaWebAuthenticationUI.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "OktaWebAuthenticationUI"
s.module_name = "WebAuthenticationUI"
s.version = "1.8.3"
s.version = "1.9.0"
s.summary = "Okta Web Authentication UI"
s.description = <<-DESC
Authenticate users using web-based OIDC.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This library uses semantic versioning and follows Okta's [Library Version Policy

| Version | Status |
| ------- | ---------------------------------- |
| 1.8.3 | ✔️ Stable |
| 1.9.0 | ✔️ Stable |

The latest release can always be found on the [releases page][github-releases].

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ final class CredentialCoordinatorImpl: CredentialCoordinator {
}

static func defaultTokenStorage() -> TokenStorage {
#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS) || os(visionOS)
KeychainTokenStorage()
#else
#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS) || os(visionOS)
KeychainTokenStorage()
#else
UserDefaultsTokenStorage()
#endif
#endif
}

static func defaultCredentialDataSource() -> CredentialDataSource {
Expand Down
4 changes: 2 additions & 2 deletions Sources/AuthFoundation/Utilities/URL+InternalExtensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ extension URL {
// https://github.com/apple/swift-corelibs-foundation/issues/4849
@inlinable
func appendingComponent(_ component: String) -> URL {
// swiftlint:disable force_unwrapping
#if os(Linux)
// swiftlint:disable force_unwrapping
var components = URLComponents(url: self, resolvingAgainstBaseURL: true)!
if !components.path.hasSuffix("/") {
components.path.append("/")
}
components.path.append(component)
return components.url!
// swiftlint:enable force_unwrapping
#else
var result = self
result.appendPathComponent(component)
return result
#endif
// swiftlint:enable force_unwrapping
}
}
2 changes: 1 addition & 1 deletion Sources/AuthFoundation/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ import Foundation

// swiftlint:disable identifier_name
@_documentation(visibility: private)
public let Version = SDKVersion(sdk: "okta-authfoundation-swift", version: "1.8.3")
public let Version = SDKVersion(sdk: "okta-authfoundation-swift", version: "1.9.0")
// swiftlint:enable identifier_name
2 changes: 1 addition & 1 deletion Sources/OktaDirectAuth/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

// swiftlint:disable identifier_name
@_documentation(visibility: private)
public let Version = SDKVersion(sdk: "okta-directauth-swift", version: "1.8.3")
public let Version = SDKVersion(sdk: "okta-directauth-swift", version: "1.9.0")
// swiftlint:enable identifier_name
2 changes: 1 addition & 1 deletion Sources/OktaOAuth2/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

// swiftlint:disable identifier_name
@_documentation(visibility: private)
public let Version = SDKVersion(sdk: "okta-oauth2-swift", version: "1.8.3")
public let Version = SDKVersion(sdk: "okta-oauth2-swift", version: "1.9.0")
// swiftlint:enable identifier_name
2 changes: 1 addition & 1 deletion Sources/WebAuthenticationUI/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ import AuthFoundation

#if canImport(UIKit) || canImport(AppKit)
@_documentation(visibility: private)
public let Version = SDKVersion(sdk: "okta-webauthenticationui-swift", version: "1.8.3")
public let Version = SDKVersion(sdk: "okta-webauthenticationui-swift", version: "1.9.0")
// swiftlint:enable identifier_name
#endif

0 comments on commit fa5d818

Please sign in to comment.