Skip to content

Commit c3641c5

Browse files
authored
Merge pull request #2 from shakurocom/II-16-update_pod_version_and_dependencies
Ii 16 update pod version and dependencies
2 parents 8e21352 + a40c1c4 commit c3641c5

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

InfinityScrollView_Example.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@
352352
INFOPLIST_KEY_UIMainStoryboardFile = Main;
353353
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
354354
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
355+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
355356
LD_RUNPATH_SEARCH_PATHS = (
356357
"$(inherited)",
357358
"@executable_path/Frameworks",
@@ -379,6 +380,7 @@
379380
INFOPLIST_KEY_UIMainStoryboardFile = Main;
380381
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
381382
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
383+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
382384
LD_RUNPATH_SEARCH_PATHS = (
383385
"$(inherited)",
384386
"@executable_path/Frameworks",

InfinityScrollView_Framework.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@
297297
GENERATE_INFOPLIST_FILE = YES;
298298
INFOPLIST_KEY_NSHumanReadableCopyright = "";
299299
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
300+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
300301
LD_RUNPATH_SEARCH_PATHS = (
301302
"$(inherited)",
302303
"@executable_path/Frameworks",
@@ -324,6 +325,7 @@
324325
GENERATE_INFOPLIST_FILE = YES;
325326
INFOPLIST_KEY_NSHumanReadableCopyright = "";
326327
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
328+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
327329
LD_RUNPATH_SEARCH_PATHS = (
328330
"$(inherited)",
329331
"@executable_path/Frameworks",

Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
source 'https://github.com/CocoaPods/Specs.git'
22

3-
platform :ios, '10.0'
3+
platform :ios, '11.0'
44

55
use_frameworks!
66

77
workspace 'InfinityScrollView'
88

99
target 'InfinityScrollView_Framework' do
1010
project 'InfinityScrollView_Framework.xcodeproj'
11-
pod 'Shakuro.CommonTypes', '1.1.1'
11+
pod 'Shakuro.CommonTypes', '1.1.4'
1212
end
1313

1414
target 'InfinityScrollView_Example' do
1515
project 'InfinityScrollView_Example.xcodeproj'
1616
pod 'SwiftLint', '0.43.1'
17-
pod 'Shakuro.CommonTypes', '1.1.1'
17+
pod 'Shakuro.CommonTypes', '1.1.4'
1818
end

Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
2-
- Shakuro.CommonTypes (1.1.1)
2+
- Shakuro.CommonTypes (1.1.4)
33
- SwiftLint (0.43.1)
44

55
DEPENDENCIES:
6-
- Shakuro.CommonTypes (= 1.1.1)
6+
- Shakuro.CommonTypes (= 1.1.4)
77
- SwiftLint (= 0.43.1)
88

99
SPEC REPOS:
@@ -12,9 +12,9 @@ SPEC REPOS:
1212
- SwiftLint
1313

1414
SPEC CHECKSUMS:
15-
Shakuro.CommonTypes: 8b15b334da1dfba894237940f890f7519d33ba3e
15+
Shakuro.CommonTypes: a3c3d432a2fc19e3e7971dad13aa9066d7ce5771
1616
SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52
1717

18-
PODFILE CHECKSUM: b2e1b2644ddf738caec04237aa0e7e461137f4b1
18+
PODFILE CHECKSUM: 7f901854237e71d11baa22b52b3e4705cfe4c847
1919

2020
COCOAPODS: 1.11.3

Shakuro.InfinityScrollView.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Pod::Spec.new do |s|
22
s.name = 'Shakuro.InfinityScrollView'
3-
s.version = '1.0.1'
3+
s.version = '1.0.2'
44
s.summary = 'Shakuro Infinity Scroll View'
55
s.homepage = 'https://github.com/shakurocom/InfinityScrollView'
66
s.license = { :type => "MIT", :file => "LICENSE.md" }
77
s.authors = {'apopov1988' => '[email protected]', 'wwwpix' => '[email protected]', 'slaschuk' => '[email protected]'}
88
s.source = { :git => 'https://github.com/shakurocom/InfinityScrollView.git', :tag => s.version }
99
s.source_files = 'Source/*', 'Source/**/*'
10-
s.swift_version = ['5.1', '5.2', '5.3', '5.4', '5.5']
10+
s.swift_version = ['5.1', '5.2', '5.3', '5.4', '5.5', '5.6']
1111
s.ios.deployment_target = '11.0'
1212

13-
s.dependency 'Shakuro.CommonTypes', '1.1.2'
13+
s.dependency 'Shakuro.CommonTypes', '1.1.4'
1414

1515
end

0 commit comments

Comments
 (0)