Skip to content

Commit 17411d4

Browse files
committed
v1.7.1
1 parent 109d17b commit 17411d4

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

AXPhotoViewer.podspec

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "AXPhotoViewer"
3-
s.version = "1.7.0"
3+
s.version = "1.7.1"
44
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
55
s.summary = "An iOS/tvOS photo gallery viewer, useful for viewing a large number of photos."
66
s.homepage = "https://github.com/alexhillc/AXPhotoViewer"
@@ -29,31 +29,40 @@ Pod::Spec.new do |s|
2929
end
3030

3131
s.subspec 'SDWebImage' do |ss|
32+
ss.ios.deployment_target = '8.0'
33+
ss.tvos.deployment_target = '9.0'
3234
ss.dependency 'AXPhotoViewer/Core'
3335
ss.dependency 'SDWebImage', '>= 4.0.0'
3436
ss.source_files = 'Source/Integrations/SDWebImageIntegration.swift'
3537
end
3638

3739
s.subspec 'PINRemoteImage' do |ps|
40+
ps.ios.deployment_target = '8.0'
41+
ps.tvos.deployment_target = '9.0'
3842
ps.dependency 'AXPhotoViewer/Core'
3943
ps.dependency 'PINRemoteImage', '~> 3.0.0-beta.9'
4044
ps.source_files = 'Source/Integrations/PINRemoteImageIntegration.swift'
4145
end
4246

4347
s.subspec 'AFNetworking' do |as|
48+
as.ios.deployment_target = '8.0'
49+
as.tvos.deployment_target = '9.0'
4450
as.dependency 'AXPhotoViewer/Core'
4551
as.dependency 'AFNetworking/NSURLSession', '>= 3.1.0'
4652
as.source_files = 'Source/Integrations/AFNetworkingIntegration.swift'
4753
end
4854

4955
s.subspec 'Kingfisher' do |ks|
56+
ks.ios.deployment_target = '10.0'
57+
ks.tvos.deployment_target = '10.0'
5058
ks.dependency 'AXPhotoViewer/Core'
5159
ks.dependency 'Kingfisher', '>= 3.10.0'
5260
ks.source_files = 'Source/Integrations/KingfisherIntegration.swift'
5361
end
5462

5563
s.subspec 'Nuke' do |nk|
56-
nk.ios.deployment_target = '9.0'
64+
nk.ios.deployment_target = '10.0'
65+
nk.tvos.deployment_target = '10.0'
5766
nk.dependency 'AXPhotoViewer/Core'
5867
nk.dependency 'Nuke', '>= 7.0'
5968
nk.source_files = 'Source/Integrations/NukeIntegration.swift'

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.7.1
2+
- [**NEW**] Better RTL support on device locales that support RTL (further support will require a refactor using AutoLayout)
3+
- [**FIXED**] KingfisherIntegration was out of date #55
4+
15
# 1.7.0
26
- Requires Swift 5.0
37

0 commit comments

Comments
 (0)