Skip to content

Commit

Permalink
Update minimum Swift version to 5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenachbaur-okta committed Jan 31, 2025
1 parent 828b975 commit a4727c9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
os: [macos-latest-large, ubuntu-latest]
swift_version: ["5.9", "5.10"]
swift_version: ["5.10"]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
Expand Down
2 changes: 1 addition & 1 deletion OktaAuthFoundation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ Provides the foundation and common features used to authenticate users, managing
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s }
s.source_files = "Sources/AuthFoundation/**/*.swift"
s.resource_bundles = { "AuthFoundation" => "Sources/AuthFoundation/Resources/**/*" }
s.swift_version = "5.9"
s.swift_version = "5.10"
end
2 changes: 1 addition & 1 deletion OktaDirectAuth.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Enables application developers to build native sign in experiences using the Okt
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s }
s.source_files = "Sources/OktaDirectAuth/**/*.swift"
s.resource_bundles = { "OktaDirectAuth" => "Sources/OktaDirectAuth/Resources/**/*" }
s.swift_version = "5.9"
s.swift_version = "5.10"

s.dependency "OktaAuthFoundation", "#{s.version.to_s}"
end
2 changes: 1 addition & 1 deletion OktaOAuth2.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Enables application developers to authenticate users utilizing a variety of OAut
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s }
s.source_files = "Sources/OktaOAuth2/**/*.swift"
s.resource_bundles = { "OktaOAuth2" => "Sources/OktaOAuth2/Resources/**/*" }
s.swift_version = "5.9"
s.swift_version = "5.10"

s.dependency "OktaAuthFoundation", "#{s.version.to_s}"
end
2 changes: 1 addition & 1 deletion OktaWebAuthenticationUI.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Authenticate users using web-based OIDC.
s.source = { :git => "https://github.com/okta/okta-mobile-swift.git", :tag => s.version.to_s }
s.source_files = "Sources/WebAuthenticationUI/**/*.swift"
s.resource_bundles = { "WebAuthenticationUI" => "Sources/WebAuthenticationUI/Resources/**/*" }
s.swift_version = "5.9"
s.swift_version = "5.10"

s.dependency "OktaAuthFoundation", "#{s.version.to_s}"
s.dependency "OktaOAuth2", "#{s.version.to_s}"
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.9
// swift-tools-version:5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand Down

0 comments on commit a4727c9

Please sign in to comment.