Skip to content

Commit 7b34370

Browse files
authored
Merge pull request #3 from shakurocom/update-dependency
Update pod version and dependency
2 parents cbe4daf + 8622ea3 commit 7b34370

5 files changed

Lines changed: 14 additions & 10 deletions

File tree

HTTPClient_Example.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@
395395
CODE_SIGN_STYLE = Automatic;
396396
DEVELOPMENT_TEAM = MW2UF479VW;
397397
INFOPLIST_FILE = "$(SRCROOT)/HTTPClient_Example/Resources/Info.plist";
398+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
398399
LD_RUNPATH_SEARCH_PATHS = (
399400
"$(inherited)",
400401
"@executable_path/Frameworks",
@@ -414,6 +415,7 @@
414415
CODE_SIGN_STYLE = Automatic;
415416
DEVELOPMENT_TEAM = MW2UF479VW;
416417
INFOPLIST_FILE = "$(SRCROOT)/HTTPClient_Example/Resources/Info.plist";
418+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
417419
LD_RUNPATH_SEARCH_PATHS = (
418420
"$(inherited)",
419421
"@executable_path/Frameworks",

HTTPClient_Framework.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@
330330
DYLIB_INSTALL_NAME_BASE = "@rpath";
331331
INFOPLIST_FILE = HTTPClient_Framework/Info.plist;
332332
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
333+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
333334
LD_RUNPATH_SEARCH_PATHS = (
334335
"$(inherited)",
335336
"@executable_path/Frameworks",
@@ -354,6 +355,7 @@
354355
DYLIB_INSTALL_NAME_BASE = "@rpath";
355356
INFOPLIST_FILE = HTTPClient_Framework/Info.plist;
356357
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
358+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
357359
LD_RUNPATH_SEARCH_PATHS = (
358360
"$(inherited)",
359361
"@executable_path/Frameworks",

Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
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 'HTTPClient'
88

99
target 'HTTPClient_Framework' do
1010
project 'HTTPClient_Framework.xcodeproj'
11-
pod 'Shakuro.CommonTypes', '1.1.0'
11+
pod 'Shakuro.CommonTypes', '1.1.4'
1212
pod 'Alamofire', '5.1.0'
1313
end
1414

1515
target 'HTTPClient_Example' do
1616
project 'HTTPClient_Example.xcodeproj'
1717
pod 'SwiftLint', '0.43.1'
18-
pod 'Shakuro.CommonTypes', '1.1.0'
18+
pod 'Shakuro.CommonTypes', '1.1.4'
1919
pod 'Alamofire', '5.1.0'
2020
end

Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PODS:
22
- Alamofire (5.1.0)
3-
- Shakuro.CommonTypes (1.1.0)
3+
- Shakuro.CommonTypes (1.1.4)
44
- SwiftLint (0.43.1)
55

66
DEPENDENCIES:
77
- Alamofire (= 5.1.0)
8-
- Shakuro.CommonTypes (= 1.1.0)
8+
- Shakuro.CommonTypes (= 1.1.4)
99
- SwiftLint (= 0.43.1)
1010

1111
SPEC REPOS:
@@ -16,9 +16,9 @@ SPEC REPOS:
1616

1717
SPEC CHECKSUMS:
1818
Alamofire: 9d5c5f602928e512395b30950c5984eca840093c
19-
Shakuro.CommonTypes: ce6dc9fe3a068a5e663a554d433703e6f4ea6a9f
19+
Shakuro.CommonTypes: a3c3d432a2fc19e3e7971dad13aa9066d7ce5771
2020
SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52
2121

22-
PODFILE CHECKSUM: d4c469c677227da24283e26f397c2706f1346bac
22+
PODFILE CHECKSUM: 855b58dd755f4231728b1e35741c92913d186e1b
2323

2424
COCOAPODS: 1.11.3

Shakuro.HTTPClient.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'Shakuro.HTTPClient'
4-
s.version = '1.1.1'
4+
s.version = '1.1.2'
55
s.summary = 'HTTP client for iOS'
66
s.homepage = 'https://github.com/shakurocom/HTTPClient'
77
s.license = { :type => "MIT", :file => "LICENSE.md" }
88
s.authors = {'apopov1988' => 'apopov@shakuro.com', 'wwwpix' => 'spopov@shakuro.com'}
99
s.source = { :git => 'https://github.com/shakurocom/HTTPClient.git', :tag => s.version }
10-
s.swift_versions = ['5.1', '5.2', '5.3', '5.4', '5.5']
10+
s.swift_versions = ['5.1', '5.2', '5.3', '5.4', '5.5', '5.6']
1111
s.source_files = 'Source/*'
1212
s.ios.deployment_target = '11.0'
1313

1414
s.framework = "Foundation"
1515
s.dependency "Alamofire", "5.1.0"
16-
s.dependency "Shakuro.CommonTypes", "1.1.2"
16+
s.dependency "Shakuro.CommonTypes", "1.1.4"
1717

1818
end

0 commit comments

Comments
 (0)