Xcode 14-related updates: drop support for swift 5.1, increase deployment targets on darwin platforms, enable dead code stripping and eager linking in xcode project, add swift 5.7 to CI, update macos-10.15 to macos-11 and ubuntu-18.04 to ubuntu-20.04 in CI due to deprecations

This commit is contained in:
Timofey Solomko
2022-09-23 13:28:46 +03:00
parent 1de0d9bd04
commit 88ab3373c6
6 changed files with 49 additions and 41 deletions
+4 -4
View File
@@ -15,10 +15,10 @@ Pod::Spec.new do |s|
s.source = { :git => "https://github.com/tsolomko/SWCompression.git", :tag => "#{s.version}" }
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"
s.swift_versions = ["5"]