-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ca565b
commit 13d94e6
Showing
14 changed files
with
55 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OktaAuthFoundation" | ||
s.module_name = "AuthFoundation" | ||
s.version = "1.6.0" | ||
s.version = "1.6.1" | ||
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. | ||
DESC | ||
s.platforms = { | ||
:ios => "9.0", | ||
:ios => "10.0", | ||
:tvos => "10.0", | ||
:watchos => "7.0", | ||
:osx => "10.11" | ||
:osx => "10.12" | ||
} | ||
s.ios.deployment_target = "9.0" | ||
s.ios.deployment_target = "10.0" | ||
s.tvos.deployment_target = "10.0" | ||
s.watchos.deployment_target = "7.0" | ||
s.osx.deployment_target = "10.11" | ||
s.osx.deployment_target = "10.12" | ||
|
||
s.homepage = "https://github.com/okta/okta-mobile-swift" | ||
s.license = { :type => "APACHE2", :file => "LICENSE" } | ||
s.authors = { "Okta Developers" => "[email protected]"} | ||
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s } | ||
s.source_files = "Sources/AuthFoundation/**/*.swift" | ||
s.resources = "Sources/AuthFoundation/Resources/*.lproj" | ||
s.swift_version = "5.5" | ||
s.swift_version = "5.6" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OktaDirectAuth" | ||
s.version = "1.6.0" | ||
s.version = "1.6.1" | ||
s.summary = "Okta Direct Authentication" | ||
s.description = <<-DESC | ||
Enables application developers to build native sign in experiences using the Okta Direct Authentication API. | ||
DESC | ||
s.platforms = { | ||
:ios => "9.0", | ||
:ios => "10.0", | ||
:tvos => "10.0", | ||
:watchos => "7.0", | ||
:osx => "10.11" | ||
:osx => "10.12" | ||
} | ||
s.ios.deployment_target = "9.0" | ||
s.ios.deployment_target = "10.0" | ||
s.tvos.deployment_target = "10.0" | ||
s.watchos.deployment_target = "7.0" | ||
s.osx.deployment_target = "10.11" | ||
s.osx.deployment_target = "10.12" | ||
|
||
s.homepage = "https://github.com/okta/okta-mobile-swift" | ||
s.license = { :type => "APACHE2", :file => "LICENSE" } | ||
s.authors = { "Okta Developers" => "[email protected]"} | ||
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s } | ||
s.source_files = "Sources/OktaDirectAuth/**/*.swift" | ||
s.resources = "Sources/OktaDirectAuth/Resources/*.lproj" | ||
s.swift_version = "5.5" | ||
s.swift_version = "5.6" | ||
|
||
s.dependency "OktaAuthFoundation", "#{s.version.to_s}" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OktaOAuth2" | ||
s.version = "1.6.0" | ||
s.version = "1.6.1" | ||
s.summary = "Okta OAuth2 Authentication" | ||
s.description = <<-DESC | ||
Enables application developers to authenticate users utilizing a variety of OAuth2 authentication flows. | ||
DESC | ||
s.platforms = { | ||
:ios => "9.0", | ||
:ios => "10.0", | ||
:tvos => "10.0", | ||
:watchos => "7.0", | ||
:osx => "10.11" | ||
:osx => "10.12" | ||
} | ||
s.ios.deployment_target = "9.0" | ||
s.ios.deployment_target = "10.0" | ||
s.tvos.deployment_target = "10.0" | ||
s.watchos.deployment_target = "7.0" | ||
s.osx.deployment_target = "10.11" | ||
s.osx.deployment_target = "10.12" | ||
|
||
s.homepage = "https://github.com/okta/okta-mobile-swift" | ||
s.license = { :type => "APACHE2", :file => "LICENSE" } | ||
s.authors = { "Okta Developers" => "[email protected]"} | ||
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s } | ||
s.source_files = "Sources/OktaOAuth2/**/*.swift" | ||
s.resources = "Sources/OktaOAuth2/Resources/*.lproj" | ||
s.swift_version = "5.5" | ||
s.swift_version = "5.6" | ||
|
||
s.dependency "OktaAuthFoundation", "#{s.version.to_s}" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OktaWebAuthenticationUI" | ||
s.module_name = "WebAuthenticationUI" | ||
s.version = "1.6.0" | ||
s.version = "1.6.1" | ||
s.summary = "Okta Web Authentication UI" | ||
s.description = <<-DESC | ||
Authenticate users using web-based OIDC. | ||
DESC | ||
s.platforms = { | ||
:ios => "9.0", | ||
:osx => "10.11" | ||
:ios => "10.0", | ||
:osx => "10.12" | ||
} | ||
s.ios.deployment_target = "9.0" | ||
s.osx.deployment_target = "10.11" | ||
s.ios.deployment_target = "10.0" | ||
s.osx.deployment_target = "10.12" | ||
|
||
s.homepage = "https://github.com/okta/okta-mobile-swift" | ||
s.license = { :type => "APACHE2", :file => "LICENSE" } | ||
s.authors = { "Okta Developers" => "[email protected]"} | ||
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s } | ||
s.source_files = "Sources/WebAuthenticationUI/**/*.swift" | ||
s.resources = "Sources/WebAuthenticationUI/Resources/*.lproj" | ||
s.swift_version = "5.5" | ||
s.swift_version = "5.6" | ||
|
||
s.dependency "OktaAuthFoundation", "#{s.version.to_s}" | ||
s.dependency "OktaOAuth2", "#{s.version.to_s}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters