Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions HTTPClient_Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = MW2UF479VW;
INFOPLIST_FILE = "$(SRCROOT)/HTTPClient_Example/Resources/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -414,6 +415,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = MW2UF479VW;
INFOPLIST_FILE = "$(SRCROOT)/HTTPClient_Example/Resources/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
2 changes: 2 additions & 0 deletions HTTPClient_Framework.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = HTTPClient_Framework/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -354,6 +355,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = HTTPClient_Framework/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
6 changes: 3 additions & 3 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '10.0'
platform :ios, '11.0'

use_frameworks!

workspace 'HTTPClient'

target 'HTTPClient_Framework' do
project 'HTTPClient_Framework.xcodeproj'
pod 'Shakuro.CommonTypes', '1.1.0'
pod 'Shakuro.CommonTypes', '1.1.4'
pod 'Alamofire', '5.1.0'
end

target 'HTTPClient_Example' do
project 'HTTPClient_Example.xcodeproj'
pod 'SwiftLint', '0.43.1'
pod 'Shakuro.CommonTypes', '1.1.0'
pod 'Shakuro.CommonTypes', '1.1.4'
pod 'Alamofire', '5.1.0'
end
8 changes: 4 additions & 4 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
PODS:
- Alamofire (5.1.0)
- Shakuro.CommonTypes (1.1.0)
- Shakuro.CommonTypes (1.1.4)
- SwiftLint (0.43.1)

DEPENDENCIES:
- Alamofire (= 5.1.0)
- Shakuro.CommonTypes (= 1.1.0)
- Shakuro.CommonTypes (= 1.1.4)
- SwiftLint (= 0.43.1)

SPEC REPOS:
Expand All @@ -16,9 +16,9 @@ SPEC REPOS:

SPEC CHECKSUMS:
Alamofire: 9d5c5f602928e512395b30950c5984eca840093c
Shakuro.CommonTypes: ce6dc9fe3a068a5e663a554d433703e6f4ea6a9f
Shakuro.CommonTypes: a3c3d432a2fc19e3e7971dad13aa9066d7ce5771
SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52

PODFILE CHECKSUM: d4c469c677227da24283e26f397c2706f1346bac
PODFILE CHECKSUM: 855b58dd755f4231728b1e35741c92913d186e1b

COCOAPODS: 1.11.3
6 changes: 3 additions & 3 deletions Shakuro.HTTPClient.podspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Pod::Spec.new do |s|

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

s.framework = "Foundation"
s.dependency "Alamofire", "5.1.0"
s.dependency "Shakuro.CommonTypes", "1.1.2"
s.dependency "Shakuro.CommonTypes", "1.1.4"

end