Skip to content

Commit 79e3d24

Browse files
committed
Make SPM deployment targets consistent with Podfile
1 parent f1ec9da commit 79e3d24

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Changelog
33

44
## master
55

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+
69
## [0.1.1]
710

811
- Allow `Introspect` to be imported in apps that support older platform versions.

Introspect.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Pod::Spec.new do |spec|
1313
spec.source_files = 'Introspect/*.swift'
1414

1515
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'
16+
spec.ios.deployment_target = '11.0'
17+
spec.tvos.deployment_target = '11.0'
18+
spec.osx.deployment_target = '10.13'
1919
end

0 commit comments

Comments
 (0)