diff --git a/.circleci/config.yml b/.circleci/config.yml index a8c8ebbf4..61e878163 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ orbs: executors: apple-ci-arm-medium: macos: - xcode: 14.3.1 + xcode: 15.4.0 resource_class: macos.m1.medium.gen1 commands: diff --git a/OktaAuthFoundation.podspec b/OktaAuthFoundation.podspec index 84f6a7d7d..209c07dfd 100644 --- a/OktaAuthFoundation.podspec +++ b/OktaAuthFoundation.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "OktaAuthFoundation" s.module_name = "AuthFoundation" - s.version = "1.8.1" + s.version = "1.8.2" 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. @@ -22,6 +22,6 @@ Provides the foundation and common features used to authenticate users, managing s.authors = { "Okta Developers" => "developer@okta.com"} 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/**/*" + s.resource_bundles = { "AuthFoundation" => "Sources/AuthFoundation/Resources/**/*" } s.swift_version = "5.6" end diff --git a/OktaDirectAuth.podspec b/OktaDirectAuth.podspec index 4d20c5e89..b00ad842e 100644 --- a/OktaDirectAuth.podspec +++ b/OktaDirectAuth.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "OktaDirectAuth" - s.version = "1.8.1" + s.version = "1.8.2" s.summary = "Okta Direct Authentication" s.description = <<-DESC Enables application developers to build native sign in experiences using the Okta Direct Authentication API. @@ -21,7 +21,7 @@ Enables application developers to build native sign in experiences using the Okt s.authors = { "Okta Developers" => "developer@okta.com"} 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/**/*" + s.resource_bundles = { "OktaDirectAuth" => "Sources/OktaDirectAuth/Resources/**/*" } s.swift_version = "5.6" s.dependency "OktaAuthFoundation", "#{s.version.to_s}" diff --git a/OktaOAuth2.podspec b/OktaOAuth2.podspec index af3f410a7..f730dcda1 100644 --- a/OktaOAuth2.podspec +++ b/OktaOAuth2.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "OktaOAuth2" - s.version = "1.8.1" + s.version = "1.8.2" s.summary = "Okta OAuth2 Authentication" s.description = <<-DESC Enables application developers to authenticate users utilizing a variety of OAuth2 authentication flows. @@ -21,7 +21,7 @@ Enables application developers to authenticate users utilizing a variety of OAut s.authors = { "Okta Developers" => "developer@okta.com"} 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/**/*" + s.resource_bundles = { "OktaOAuth2" => "Sources/OktaOAuth2/Resources/**/*" } s.swift_version = "5.6" s.dependency "OktaAuthFoundation", "#{s.version.to_s}" diff --git a/OktaWebAuthenticationUI.podspec b/OktaWebAuthenticationUI.podspec index 3ab54073c..0ce762838 100644 --- a/OktaWebAuthenticationUI.podspec +++ b/OktaWebAuthenticationUI.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "OktaWebAuthenticationUI" s.module_name = "WebAuthenticationUI" - s.version = "1.8.1" + s.version = "1.8.2" s.summary = "Okta Web Authentication UI" s.description = <<-DESC Authenticate users using web-based OIDC. @@ -18,7 +18,7 @@ Authenticate users using web-based OIDC. s.authors = { "Okta Developers" => "developer@okta.com"} 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/**/*" + s.resource_bundles = { "WebAuthenticationUI" => "Sources/WebAuthenticationUI/Resources/**/*" } s.swift_version = "5.6" s.dependency "OktaAuthFoundation", "#{s.version.to_s}" diff --git a/README.md b/README.md index 4a834b650..08a5180de 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This library uses semantic versioning and follows Okta's [Library Version Policy | Version | Status | | ------- | ---------------------------------- | -| 1.8.1 | ✔️ Stable | +| 1.8.2 | ✔️ Stable | The latest release can always be found on the [releases page][github-releases]. diff --git a/Sources/AuthFoundation/Version.swift b/Sources/AuthFoundation/Version.swift index 11b9a140d..25ab28892 100644 --- a/Sources/AuthFoundation/Version.swift +++ b/Sources/AuthFoundation/Version.swift @@ -13,5 +13,5 @@ import Foundation // swiftlint:disable identifier_name -public let Version = SDKVersion(sdk: "okta-authfoundation-swift", version: "1.8.1") +public let Version = SDKVersion(sdk: "okta-authfoundation-swift", version: "1.8.2") // swiftlint:enable identifier_name diff --git a/Sources/OktaDirectAuth/Version.swift b/Sources/OktaDirectAuth/Version.swift index 84ef40be3..96c6c8956 100644 --- a/Sources/OktaDirectAuth/Version.swift +++ b/Sources/OktaDirectAuth/Version.swift @@ -13,5 +13,5 @@ @_exported import AuthFoundation // swiftlint:disable identifier_name -public let Version = SDKVersion(sdk: "okta-directauth-swift", version: "1.8.1") +public let Version = SDKVersion(sdk: "okta-directauth-swift", version: "1.8.2") // swiftlint:enable identifier_name diff --git a/Sources/OktaOAuth2/Version.swift b/Sources/OktaOAuth2/Version.swift index 12c917cb7..d52925ea9 100644 --- a/Sources/OktaOAuth2/Version.swift +++ b/Sources/OktaOAuth2/Version.swift @@ -13,5 +13,5 @@ @_exported import AuthFoundation // swiftlint:disable identifier_name -public let Version = SDKVersion(sdk: "okta-oauth2-swift", version: "1.8.1") +public let Version = SDKVersion(sdk: "okta-oauth2-swift", version: "1.8.2") // swiftlint:enable identifier_name diff --git a/Sources/WebAuthenticationUI/Version.swift b/Sources/WebAuthenticationUI/Version.swift index 134440e23..905929c85 100644 --- a/Sources/WebAuthenticationUI/Version.swift +++ b/Sources/WebAuthenticationUI/Version.swift @@ -14,5 +14,5 @@ import Foundation import AuthFoundation // swiftlint:disable identifier_name -public let Version = SDKVersion(sdk: "okta-webauthenticationui-swift", version: "1.8.1") +public let Version = SDKVersion(sdk: "okta-webauthenticationui-swift", version: "1.8.2") // swiftlint:enable identifier_name