Skip to content

Commit b70876b

Browse files
authored
Merge pull request #48 from SDWebImage/xcode11
Bumped the min deployment target to iOS 9+, Xcode to Xcode 11
2 parents 84c97db + df994df commit b70876b

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

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: "SDWebImageWebPCoder",
88
platforms: [
9-
.macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2)
9+
.macOS(.v10_11), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
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.7.0"),
20+
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.10.0"),
2121
.package(url: "https://github.com/SDWebImage/libwebp-Xcode.git", from: "1.1.0")
2222
],
2323
targets: [

Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ test_project_path = 'Tests/SDWebImageWebPCoderTests'
55
workspace 'SDWebImageWebPCoder.xcworkspace'
66

77
target 'SDWebImageWebPCoderExample' do
8-
platform :ios, '8.0'
8+
platform :ios, '9.0'
99
project example_project_path
1010
pod 'SDWebImageWebPCoder', :path => './'
1111
end
1212

1313
target 'SDWebImageWebPCoderTests' do
14-
platform :ios, '8.0'
14+
platform :ios, '9.0'
1515
project test_project_path
1616
pod 'Expecta'
1717
pod 'SDWebImageWebPCoder', :path => './'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ SDWebImageWebPCoder supports both WebP decoding and encoding, for Static WebP or
1414

1515
## Requirements
1616

17-
+ iOS 8
18-
+ macOS 10.10
17+
+ iOS 9.0
18+
+ macOS 10.11
1919
+ tvOS 9.0
2020
+ watchOS 2.0
2121

SDWebImageWebPCoder.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SDWebImageWebPCoder'
3-
s.version = '0.6.1'
3+
s.version = '0.7.0'
44
s.summary = 'WebP decoder/encoder for SDWebImage coder plugin.'
55

66
s.description = <<-DESC
@@ -12,8 +12,8 @@ This is a SDWebImage coder plugin to support WebP image.
1212
s.author = { 'Bogdan Poplauschi' => '[email protected]' }
1313
s.source = { :git => 'https://github.com/SDWebImage/SDWebImageWebPCoder.git', :tag => s.version.to_s }
1414

15-
s.ios.deployment_target = '8.0'
16-
s.osx.deployment_target = '10.10'
15+
s.ios.deployment_target = '9.0'
16+
s.osx.deployment_target = '10.11'
1717
s.tvos.deployment_target = '9.0'
1818
s.watchos.deployment_target = '2.0'
1919
s.module_map = 'SDWebImageWebPCoder/Module/SDWebImageWebPCoder.modulemap'
@@ -27,7 +27,7 @@ This is a SDWebImage coder plugin to support WebP image.
2727
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) SD_WEBP=1 WEBP_USE_INTRINSICS=1',
2828
'USER_HEADER_SEARCH_PATHS' => '$(inherited) $(SRCROOT)/libwebp/src'
2929
}
30-
s.dependency 'SDWebImage/Core', '~> 5.7'
30+
s.dependency 'SDWebImage/Core', '~> 5.10'
3131
s.dependency 'libwebp', '~> 1.0'
3232

3333
end

SDWebImageWebPCoder.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,8 @@
514514
GCC_WARN_UNUSED_FUNCTION = YES;
515515
GCC_WARN_UNUSED_VARIABLE = YES;
516516
INFOPLIST_FILE = SDWebImageWebPCoder/Module/Info.plist;
517-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
518-
MACOSX_DEPLOYMENT_TARGET = 10.10;
517+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
518+
MACOSX_DEPLOYMENT_TARGET = 10.11;
519519
MTL_ENABLE_DEBUG_INFO = YES;
520520
ONLY_ACTIVE_ARCH = YES;
521521
PRODUCT_BUNDLE_IDENTIFIER = org.SDWebImage.SDWebImageWebPCoder;
@@ -589,8 +589,8 @@
589589
GCC_WARN_UNUSED_FUNCTION = YES;
590590
GCC_WARN_UNUSED_VARIABLE = YES;
591591
INFOPLIST_FILE = SDWebImageWebPCoder/Module/Info.plist;
592-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
593-
MACOSX_DEPLOYMENT_TARGET = 10.10;
592+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
593+
MACOSX_DEPLOYMENT_TARGET = 10.11;
594594
MTL_ENABLE_DEBUG_INFO = NO;
595595
PRODUCT_BUNDLE_IDENTIFIER = org.SDWebImage.SDWebImageWebPCoder;
596596
PRODUCT_NAME = SDWebImageWebPCoder;

0 commit comments

Comments
 (0)