Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop iOS 8 and loosen SQLite.swift version requirement #98

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Apollo.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|

s.default_subspecs = 'Core'

s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.1'

Expand All @@ -27,6 +27,6 @@ Pod::Spec.new do |s|
s.subspec 'SQLite' do |ss|
ss.source_files = 'Sources/ApolloSQLite/*.swift'
ss.dependency 'Apollo/Core'
ss.dependency 'SQLite.swift', '0.11.2' # 0.11.3 doesn't support iOS < 9
ss.dependency 'SQLite.swift', '~> 0.11.0'
end
end
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "stephencelis/SQLite.swift" == 0.11.2 # 0.11.3 doesn't support iOS < 9
github "stephencelis/SQLite.swift" ~> 0.11
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "stephencelis/SQLite.swift" "0.11.2"
github "stephencelis/SQLite.swift" "0.11.3"
2 changes: 1 addition & 1 deletion Framework.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SUPPORTED_PLATFORMS = iphoneos iphonesimulator appletvsimulator appletvos watchs

SDKROOT[sdk=iphone*] = iphoneos
VALID_ARCHS[sdk=iphone*] = arm64 armv7 armv7s
IPHONEOS_DEPLOYMENT_TARGET = 8.0
IPHONEOS_DEPLOYMENT_TARGET = 9.0
TARGETED_DEVICE_FAMILY[sdk=iphone*] = 1,2
LD_RUNPATH_SEARCH_PATHS[sdk=iphone*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks

Expand Down