Skip to content

Commit

Permalink
Bump / release 3.1.0 (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenachbaur-okta authored Nov 27, 2023
1 parent da4fd36 commit 8174fe6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions OktaIdx.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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].

Expand Down
3 changes: 0 additions & 3 deletions Sources/OktaIdx/Capabilities/IDXCapability.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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) }
}
2 changes: 1 addition & 1 deletion Sources/OktaIdx/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 8174fe6

Please sign in to comment.