Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Drop iOS 9, tvOS 9, watchOS 3, macOS 10.11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Apr 6, 2019
1 parent 18db4d3 commit e955ca7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ matrix:
env: DESTINATION="OS=11.0.1,name=iPhone X" RUN_TESTS="YES" SWIFT_VERSION="5.0"
- osx_image: xcode10.2
env: DESTINATION="OS=10.3.1,name=iPhone SE" RUN_TESTS="YES" SWIFT_VERSION="5.0"
- osx_image: xcode10.2
env: DESTINATION="OS=9.3,name=iPhone 5" RUN_TESTS="YES" SWIFT_VERSION="5.0"

- osx_image: xcode10.2
env: DESTINATION="OS=12.2,name=iPhone X" RUN_TESTS="YES" SWIFT_VERSION="4.2"
Expand Down
8 changes: 4 additions & 4 deletions Nuke.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ Pod::Spec.new do |s|
s.social_media_url = 'https://twitter.com/a_grebenyuk'
s.source = { :git => 'https://github.com/kean/Nuke.git', :tag => s.version.to_s }

s.ios.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.ios.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'

s.source_files = 'Sources/**/*'
end
2 changes: 0 additions & 2 deletions Nuke.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,6 @@
baseConfigurationReference = 0CCDB8D121D576F00032518B /* Nuke.xcconfig */;
buildSettings = {
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.github.kean.Nuke-Tests";
Expand All @@ -722,7 +721,6 @@
baseConfigurationReference = 0CCDB8D121D576F00032518B /* Nuke.xcconfig */;
buildSettings = {
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.github.kean.Nuke-Tests";
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ If you'd like to contribute, please feel free to create a PR.

| Nuke | Swift | Xcode | Platforms |
|------------------ |----------------------- |------------------ |------------------------------------------------- |
| Nuke 7.6 | Swift 4.2 – 5.0 | Xcode 10.1 – 10.2 | iOS 9.0 / watchOS 2.0 / macOS 10.10 / tvOS 9.0 |
| Nuke 7.6 | Swift 4.2 – 5.0 | Xcode 10.1 – 10.2 | iOS 10.0 / watchOS 3.0 / macOS 10.12 / tvOS 10.0 |
| Nuke 7.2 – 7.5.2 | Swift 4.0 – 4.2 | Xcode 9.2 – 10.1 | iOS 9.0 / watchOS 2.0 / macOS 10.10 / tvOS 9.0 |

# License
Expand Down
8 changes: 4 additions & 4 deletions Supporting Files/Nuke.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SUPPORTED_PLATFORMS = iphoneos macosx appletvos watchos iphonesimulator appletvs

SWIFT_VERSION = 5.0

IPHONEOS_DEPLOYMENT_TARGET = 9.0
MACOSX_DEPLOYMENT_TARGET = 10.11
TVOS_DEPLOYMENT_TARGET = 9.0
WATCHOS_DEPLOYMENT_TARGET = 2.0
IPHONEOS_DEPLOYMENT_TARGET = 10.0
MACOSX_DEPLOYMENT_TARGET = 10.12
TVOS_DEPLOYMENT_TARGET = 10.0
WATCHOS_DEPLOYMENT_TARGET = 3.0

0 comments on commit e955ca7

Please sign in to comment.