Skip to content
This repository has been archived by the owner on Sep 24, 2022. It is now read-only.

Commit

Permalink
Bump minimum OS to iOS 13
Browse files Browse the repository at this point in the history
This is to get around onevcat#1802, which was introduced with the update to
Xcode 13. onevcat#1802
  • Loading branch information
justin committed Sep 28, 2021
1 parent d06df9a commit e1ed36c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
// swift-tools-version:5.1
// swift-tools-version:5.4
import PackageDescription

let package = Package(
name: "Kingfisher",
platforms: [.iOS(.v10), .macOS(.v10_12), .tvOS(.v10), .watchOS(.v3)],
platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13), .watchOS(.v6)],
products: [
.library(name: "Kingfisher", targets: ["Kingfisher"])
],
targets: [
.target(
name: "Kingfisher",
path: "Sources"
path: "Sources",
exclude: ["Info.plist"]
)
]
)

0 comments on commit e1ed36c

Please sign in to comment.