From f7bb144e019239e01832f6ff17b2a03a3ef0e189 Mon Sep 17 00:00:00 2001 From: sshabalin Date: Mon, 12 Dec 2022 17:08:59 +0300 Subject: [PATCH 1/4] update commontypes --- Shakuro.HTTPClient.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shakuro.HTTPClient.podspec b/Shakuro.HTTPClient.podspec index dbc68b5..4759c9b 100644 --- a/Shakuro.HTTPClient.podspec +++ b/Shakuro.HTTPClient.podspec @@ -13,6 +13,6 @@ Pod::Spec.new do |s| s.framework = "Foundation" s.dependency "Alamofire", "5.1.0" - s.dependency "Shakuro.CommonTypes", "1.1.2" + s.dependency "Shakuro.CommonTypes", "1.1.4" end From 9b2a48f310c132a85961535623e5504d6129fb24 Mon Sep 17 00:00:00 2001 From: EugeneKlyuenkov Date: Mon, 23 Jan 2023 10:47:35 +0300 Subject: [PATCH 2/4] II-16-[updated podfile] --- Podfile | 6 +++--- Podfile.lock | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Podfile b/Podfile index 4268473..7b66c9f 100644 --- a/Podfile +++ b/Podfile @@ -1,6 +1,6 @@ source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '10.0' +platform :ios, '11.0' use_frameworks! @@ -8,13 +8,13 @@ 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 diff --git a/Podfile.lock b/Podfile.lock index 7f255d6..bcbafa3 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -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: @@ -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 From 79e211c1ead45054cf1c333f2caf6bbc1413efc6 Mon Sep 17 00:00:00 2001 From: EugeneKlyuenkov Date: Mon, 23 Jan 2023 10:49:35 +0300 Subject: [PATCH 3/4] II-16-[upgraded development target to iOS 11.0] --- HTTPClient_Example.xcodeproj/project.pbxproj | 2 ++ HTTPClient_Framework.xcodeproj/project.pbxproj | 2 ++ 2 files changed, 4 insertions(+) diff --git a/HTTPClient_Example.xcodeproj/project.pbxproj b/HTTPClient_Example.xcodeproj/project.pbxproj index 270576f..bd9f0dc 100644 --- a/HTTPClient_Example.xcodeproj/project.pbxproj +++ b/HTTPClient_Example.xcodeproj/project.pbxproj @@ -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", @@ -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", diff --git a/HTTPClient_Framework.xcodeproj/project.pbxproj b/HTTPClient_Framework.xcodeproj/project.pbxproj index 350e24e..a458146 100644 --- a/HTTPClient_Framework.xcodeproj/project.pbxproj +++ b/HTTPClient_Framework.xcodeproj/project.pbxproj @@ -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", @@ -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", From 8622ea38168ecef3fc009bc770c7290c76ebafad Mon Sep 17 00:00:00 2001 From: EugeneKlyuenkov Date: Mon, 23 Jan 2023 10:50:30 +0300 Subject: [PATCH 4/4] II-16-[upgraded spec version to 1.1.2] --- Shakuro.HTTPClient.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shakuro.HTTPClient.podspec b/Shakuro.HTTPClient.podspec index 4759c9b..0cb2677 100644 --- a/Shakuro.HTTPClient.podspec +++ b/Shakuro.HTTPClient.podspec @@ -1,13 +1,13 @@ 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'