We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ec9da commit 79e3d24Copy full SHA for 79e3d24
CHANGELOG.md
@@ -3,6 +3,9 @@ Changelog
3
4
## master
5
6
+ - Allow iOS 11, tvOS 11, macOS 10.13 as deployment target with SPM.
7
+ [#41](https://github.com/siteline/SwiftUI-Introspect/pull/41)
8
+
9
## [0.1.1]
10
11
- Allow `Introspect` to be imported in apps that support older platform versions.
Introspect.podspec
@@ -13,7 +13,7 @@ Pod::Spec.new do |spec|
13
spec.source_files = 'Introspect/*.swift'
14
15
spec.swift_version = '5.1'
16
- spec.ios.deployment_target = '13.0'
17
- spec.tvos.deployment_target = '13.0'
18
- spec.osx.deployment_target = '10.15'
+ spec.ios.deployment_target = '11.0'
+ spec.tvos.deployment_target = '11.0'
+ spec.osx.deployment_target = '10.13'
19
end
0 commit comments