Skip to content

Commit

Permalink
chore: upgraded minimum version of swift to 5.9 and dropped support f…
Browse files Browse the repository at this point in the history
…or xcode 14
  • Loading branch information
desusai7 committed Jul 2, 2024
1 parent 47b030b commit 90250fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// swift-tools-version:5.7
// swift-tools-version:5.9
import PackageDescription

let package = Package(
name: "SimpleKeychain",
platforms: [.iOS(.v13), .macOS(.v11), .tvOS(.v13), .watchOS(.v7)],
platforms: [.iOS(.v13), .macOS(.v11), .tvOS(.v13), .watchOS(.v7), .visionOS(.v1)],
products: [.library(name: "SimpleKeychain", targets: ["SimpleKeychain"])],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion SimpleKeychain.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ Pod::Spec.new do |s|
s.visionos.deployment_target = '1.0'

s.source_files = 'SimpleKeychain/*.swift'
s.swift_versions = ['5.7', '5.8']
s.swift_versions = ['5.9']
end

0 comments on commit 90250fe

Please sign in to comment.