From 0cffa39caabdecbfa367cb132799064f432d57c9 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Sun, 19 Jul 2026 00:53:13 +0700 Subject: [PATCH] Fix deprecated .iOS(.v11) platform declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Xcode 17 deprecates the v11 iOS platform symbol ("'v11' is deprecated: iOS 12.0 is the oldest supported version"), so every consumer's package resolve emits a warning. Bump the declared floor to .v12 — the shipped xcframework already requires far newer runtimes, so this loosens nothing. Co-Authored-By: Claude Fable 5 --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index cf86b8c..d22ac9b 100644 --- a/Package.swift +++ b/Package.swift @@ -5,7 +5,7 @@ import PackageDescription let package = Package( name: "vector", - platforms: [.macOS(.v11), .iOS(.v11)], + platforms: [.macOS(.v11), .iOS(.v12)], products: [ .library( name: "vector",