Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 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 = "2.1.4"
s.version = "2.1.5"
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 OktaBrowserSignin.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "OktaBrowserSignin"
s.module_name = "BrowserSignin"
s.version = "2.1.4"
s.version = "2.1.5"
s.summary = "Okta Browser Sign In UI"
s.description = <<-DESC
Authenticate users using web-based OIDC.
Expand Down
2 changes: 1 addition & 1 deletion OktaClient.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OktaClient"
s.version = "2.1.4"
s.version = "2.1.5"
s.summary = "Secure client authentication, request authorization, and user management capabilities for Swift."
s.description = <<-DESC
Provides a modularized set of libraries that provide the building blocks and convenience features used to authenticate users, manage the lifecycle and storage of tokens and user credentials, and provide a base for other libraries and applications 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 = "2.1.4"
s.version = "2.1.5"
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 OktaIdxAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'OktaIdxAuth'
s.version = '2.1.4'
s.version = '2.1.5'
s.summary = 'SDK to easily integrate the Okta Identity Engine'
s.description = <<-DESC
Integrate your native app with Okta using the Okta Identity Engine library.
Expand Down
2 changes: 1 addition & 1 deletion OktaOAuth2.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "OktaOAuth2"
s.module_name = "OAuth2Auth"
s.version = "2.1.4"
s.version = "2.1.5"
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 Sources/AuthFoundation/Version+AuthFoundation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ extension SDKVersion.Name {
extension SDKVersion {
@_documentation(visibility: private)
public static let authFoundation: SDKVersion? = {
register(.authFoundation, version: "2.1.4")
register(.authFoundation, version: "2.1.5")
}()
}
2 changes: 1 addition & 1 deletion Sources/BrowserSignin/Version+BrowserSignin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ extension SDKVersion.Name {
extension SDKVersion {
@_documentation(visibility: private)
public static let browserSignin: SDKVersion? = {
register(.browserSignin, version: "2.1.4")
register(.browserSignin, version: "2.1.5")
}()
}
2 changes: 1 addition & 1 deletion Sources/OAuth2Auth/Version+OAuth2Auth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ extension SDKVersion.Name {
extension SDKVersion {
@_documentation(visibility: private)
public static let oauth2: SDKVersion? = {
register(.oauth2, version: "2.1.4")
register(.oauth2, version: "2.1.5")
}()
}
2 changes: 1 addition & 1 deletion Sources/OktaDirectAuth/Version+OktaDirectAuth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ extension SDKVersion.Name {
extension SDKVersion {
@_documentation(visibility: private)
public static let directAuth: SDKVersion? = {
register(.directAuth, version: "2.1.4")
register(.directAuth, version: "2.1.5")
}()
}
2 changes: 1 addition & 1 deletion Sources/OktaIdxAuth/Version+OktaIdxAuth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ extension SDKVersion.Name {
extension SDKVersion {
@_documentation(visibility: private)
public static let oktaIdx: SDKVersion? = {
register(.oktaIdx, version: "2.1.4")
register(.oktaIdx, version: "2.1.5")
}()
}
Loading