Make SPM deployment targets consistent with Podfile

This commit is contained in:
Lois Di Qual 2020-12-08 13:08:21 -08:00
parent f1ec9da347
commit 79e3d24932
2 changed files with 6 additions and 3 deletions

View File

@ -3,6 +3,9 @@ Changelog
## master
- Allow iOS 11, tvOS 11, macOS 10.13 as deployment target with SPM.
[#41](https://github.com/siteline/SwiftUI-Introspect/pull/41)
## [0.1.1]
- Allow `Introspect` to be imported in apps that support older platform versions.

View File

@ -13,7 +13,7 @@ Pod::Spec.new do |spec|
spec.source_files = 'Introspect/*.swift'
spec.swift_version = '5.1'
spec.ios.deployment_target = '13.0'
spec.tvos.deployment_target = '13.0'
spec.osx.deployment_target = '10.15'
spec.ios.deployment_target = '11.0'
spec.tvos.deployment_target = '11.0'
spec.osx.deployment_target = '10.13'
end