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

Bump up versions for Xcode 15+ #639

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
20 changes: 10 additions & 10 deletions PINRemoteImage.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

Pod::Spec.new do |s|
s.name = "PINRemoteImage"
s.version = "3.0.3"
s.version = "3.0.4"
s.summary = "A thread safe, performant, feature rich image fetcher"
s.homepage = "https://github.com/pinterest/PINRemoteImage"
s.license = 'Apache 2.0'
Expand All @@ -18,15 +18,15 @@ Pod::Spec.new do |s|
s.prefix_header_file = false
# s.social_media_url = 'https://twitter.com/garrettmoon'

ios_deployment = "8.0"
tvos_deployment = "9.0"
osx_deployment = "10.11"
ios_deployment = "12.0"
tvos_deployment = "12.0"
osx_deployment = "10.13"
s.ios.deployment_target = ios_deployment
s.tvos.deployment_target = tvos_deployment
s.requires_arc = true

s.default_subspecs = 'PINCache'

### Subspecs
s.subspec 'Core' do |cs|
cs.dependency 'PINOperation'
Expand All @@ -38,7 +38,7 @@ Pod::Spec.new do |s|
cs.exclude_files = 'Source/Classes/PINCache/*.{h,m}', 'Source/Classes/include/PINCache+PINRemoteImageCaching.h'
cs.frameworks = 'ImageIO', 'Accelerate'
end

s.subspec 'iOS' do |ios|
ios.ios.deployment_target = ios_deployment
ios.tvos.deployment_target = tvos_deployment
Expand All @@ -62,13 +62,13 @@ Pod::Spec.new do |s|
webp.tvos.deployment_target = tvos_deployment
webp.osx.deployment_target = osx_deployment
webp.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) PIN_WEBP=1',
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) PIN_WEBP=1',
'USER_HEADER_SEARCH_PATHS' => '$(inherited) $(SRCROOT)/libwebp/src'
}
webp.dependency 'PINRemoteImage/Core'
webp.dependency 'libwebp'
end

s.subspec "PINCache" do |pc|
pc.dependency 'PINRemoteImage/Core'
pc.dependency 'PINCache', '~> 3.0.3'
Expand All @@ -77,5 +77,5 @@ Pod::Spec.new do |s|
pc.osx.deployment_target = osx_deployment
pc.source_files = 'Source/Classes/PINCache/*.{h,m}', 'Source/Classes/include/PINCache+PINRemoteImageCaching.h'
end

end
Loading