Skip to content

Commit 0e8c575

Browse files
authored
Merge pull request #22 from SDWebImage/xcode11
Bump the Photos Loader into iOS 9+, match SDWebImage 5.10+
2 parents c56d532 + e9b1337 commit 0e8c575

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "SDWebImage/SDWebImage" ~> 5.5
1+
github "SDWebImage/SDWebImage" ~> 5.10

Example/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use_frameworks!
22
inhibit_all_warnings!
33

44
target 'SDWebImagePhotosPlugin_Example' do
5-
platform :ios, '8.0'
5+
platform :ios, '9.0'
66
pod 'SDWebImagePhotosPlugin', :path => '../'
77

88
target 'SDWebImagePhotosPlugin_Tests' do

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import PackageDescription
66
let package = Package(
77
name: "SDWebImagePhotosPlugin",
88
platforms: [
9-
.macOS(.v10_13), .iOS(.v8), .tvOS(.v10)
9+
.macOS(.v10_13), .iOS(.v9), .tvOS(.v10)
1010
],
1111
products: [
1212
// Products define the executables and libraries produced by a package, and make them visible to other packages.
@@ -17,7 +17,7 @@ let package = Package(
1717
dependencies: [
1818
// Dependencies declare other packages that this package depends on.
1919
// .package(url: /* package url */, from: "1.0.0"),
20-
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.5.0")
20+
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.10.0")
2121
],
2222
targets: [
2323
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This plugin allows you to use your familiar View Category method from SDWebImage
1616

1717
## Requirements
1818

19-
+ iOS 8+
19+
+ iOS 9+
2020
+ macOS 10.13+
2121
+ tvOS 10+
2222
+ Xcode 10+

SDWebImagePhotosPlugin.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This is a SDWebImage loader plugin to support Apple's Photos framework image ass
2323
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
2424

2525
s.osx.deployment_target = '10.13'
26-
s.ios.deployment_target = '8.0'
26+
s.ios.deployment_target = '9.0'
2727
s.tvos.deployment_target = '10.0'
2828

2929
s.source_files = 'SDWebImagePhotosPlugin/Classes/**/*', 'SDWebImagePhotosPlugin/Module/SDWebImagePhotosPlugin.h'
@@ -35,5 +35,5 @@ This is a SDWebImage loader plugin to support Apple's Photos framework image ass
3535
}
3636

3737
s.frameworks = 'Photos'
38-
s.dependency 'SDWebImage/Core', '~> 5.5'
38+
s.dependency 'SDWebImage/Core', '~> 5.10'
3939
end

SDWebImagePhotosPlugin.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@
432432
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
433433
GCC_WARN_UNUSED_FUNCTION = YES;
434434
GCC_WARN_UNUSED_VARIABLE = YES;
435-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
435+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
436436
MACOSX_DEPLOYMENT_TARGET = 10.13;
437437
MTL_ENABLE_DEBUG_INFO = YES;
438438
ONLY_ACTIVE_ARCH = YES;
@@ -488,7 +488,7 @@
488488
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
489489
GCC_WARN_UNUSED_FUNCTION = YES;
490490
GCC_WARN_UNUSED_VARIABLE = YES;
491-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
491+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
492492
MACOSX_DEPLOYMENT_TARGET = 10.13;
493493
MTL_ENABLE_DEBUG_INFO = NO;
494494
SDKROOT = iphoneos;

0 commit comments

Comments
 (0)