diff --git a/OktaIdx.podspec b/OktaIdx.podspec index 981d2f32..5611bd94 100644 --- a/OktaIdx.podspec +++ b/OktaIdx.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'OktaIdx' - spec.version = '3.0.9' + spec.version = '3.1.0' spec.summary = 'SDK to easily integrate the Okta Identity Engine' spec.description = <<-DESC Integrate your native app with Okta using the Okta Identity Engine library. @@ -24,5 +24,5 @@ Integrate your native app with Okta using the Okta Identity Engine library. spec.source_files = 'Sources/OktaIdx/**/*.swift' spec.swift_version = "5.5" - spec.dependency "OktaAuthFoundation", "~> 1.4.2" + spec.dependency "OktaAuthFoundation", "~> 1.5.0" end diff --git a/Package.swift b/Package.swift index 957abede..c97f655e 100644 --- a/Package.swift +++ b/Package.swift @@ -18,7 +18,7 @@ var package = Package( dependencies: [ .package(name: "AuthFoundation", url: "https://github.com/okta/okta-mobile-swift", - from: "1.4.2") + from: "1.5.0") ], targets: [ .target(name: "OktaIdx", diff --git a/README.md b/README.md index e896b565..a254a2b0 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ This library uses semantic versioning and follows Okta's [Library Version Policy | ------- | ---------------------------------- | | 1.0.0 | | | 2.0.1 | | -| 3.0.9 | ✔️ Stable | +| 3.1.0 | ✔️ Stable | The latest release can always be found on the [releases page][github-releases]. diff --git a/Sources/OktaIdx/Capabilities/IDXCapability.swift b/Sources/OktaIdx/Capabilities/IDXCapability.swift index dfa9571e..fe79e02e 100644 --- a/Sources/OktaIdx/Capabilities/IDXCapability.swift +++ b/Sources/OktaIdx/Capabilities/IDXCapability.swift @@ -100,7 +100,4 @@ extension Remediation: CapabilityCollection { /// /// This value will only be present for social IDP remediation options, and will otherwise be `nil`. public var socialIdp: Capability.SocialIDP? { capability(Capability.SocialIDP.self) } - - /// This value will only be present for Duo MFA, otherwise will be `nil`. - public var duo: Capability.Duo? { capability(Capability.Duo.self) } } diff --git a/Sources/OktaIdx/Version.swift b/Sources/OktaIdx/Version.swift index 35880348..c626112d 100644 --- a/Sources/OktaIdx/Version.swift +++ b/Sources/OktaIdx/Version.swift @@ -12,4 +12,4 @@ import Foundation -public let Version = SDKVersion(sdk: "okta-idx-swift", version: "3.0.9") +public let Version = SDKVersion(sdk: "okta-idx-swift", version: "3.1.0")