Skip to content

Commit 96d93a2

Browse files
authored
Merge pull request #3 from shakurocom/II-16-update_pod_version
Ii 16 update pod version
2 parents aa8fa66 + 0f62b8d commit 96d93a2

6 files changed

Lines changed: 18 additions & 14 deletions

File tree

Podfile

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

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

1414
target 'TaskManager_Example' do
1515
project 'TaskManager_Example.xcodeproj'
1616
pod 'SwiftLint', '0.43.1'
17-
pod 'Shakuro.CommonTypes', '1.1.0'
17+
pod 'Shakuro.CommonTypes', '1.1.4'
1818
pod 'Shakuro.HTTPClient'
1919
end

Podfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
PODS:
22
- Alamofire (5.1.0)
3-
- Shakuro.CommonTypes (1.1.0)
4-
- Shakuro.HTTPClient (1.1.0):
3+
- Shakuro.CommonTypes (1.1.4)
4+
- Shakuro.HTTPClient (1.1.2):
55
- Alamofire (= 5.1.0)
6-
- Shakuro.CommonTypes (= 1.1.0)
6+
- Shakuro.CommonTypes (= 1.1.4)
77
- SwiftLint (0.43.1)
88

99
DEPENDENCIES:
10-
- Shakuro.CommonTypes (= 1.1.0)
10+
- Shakuro.CommonTypes (= 1.1.4)
1111
- Shakuro.HTTPClient
1212
- SwiftLint (= 0.43.1)
1313

@@ -20,10 +20,10 @@ SPEC REPOS:
2020

2121
SPEC CHECKSUMS:
2222
Alamofire: 9d5c5f602928e512395b30950c5984eca840093c
23-
Shakuro.CommonTypes: ce6dc9fe3a068a5e663a554d433703e6f4ea6a9f
24-
Shakuro.HTTPClient: 9c4a7bab23307d252403ab4c332e1a7fac13d5cf
23+
Shakuro.CommonTypes: a3c3d432a2fc19e3e7971dad13aa9066d7ce5771
24+
Shakuro.HTTPClient: 8012df6fabc45d36c5b2e172c17d1b94af45c0ce
2525
SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52
2626

27-
PODFILE CHECKSUM: 8b00b1d7dca6836285baa34d5146967c4f00f923
27+
PODFILE CHECKSUM: 56d2cdce3dcc7821a3ad26751984caded8486294
2828

2929
COCOAPODS: 1.11.3

Shakuro.TaskManager.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Shakuro.TaskManager'
3-
s.version = '1.1.2'
3+
s.version = '1.1.3'
44
s.summary = 'Shakuro Task Manager'
55
s.homepage = 'https://github.com/shakurocom/TaskManager'
66
s.license = { :type => "MIT", :file => "LICENSE.md" }
@@ -10,6 +10,6 @@ Pod::Spec.new do |s|
1010
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

TaskManager_Example.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,7 @@
451451
CODE_SIGN_STYLE = Automatic;
452452
DEVELOPMENT_TEAM = MW2UF479VW;
453453
INFOPLIST_FILE = TaskManager_Example/Resources/Info.plist;
454+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
454455
LD_RUNPATH_SEARCH_PATHS = (
455456
"$(inherited)",
456457
"@executable_path/Frameworks",
@@ -470,6 +471,7 @@
470471
CODE_SIGN_STYLE = Automatic;
471472
DEVELOPMENT_TEAM = MW2UF479VW;
472473
INFOPLIST_FILE = TaskManager_Example/Resources/Info.plist;
474+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
473475
LD_RUNPATH_SEARCH_PATHS = (
474476
"$(inherited)",
475477
"@executable_path/Frameworks",

TaskManager_Example/Core/TaskManager/Operations/GetStringsFromRandomOrgOperation.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ internal class GetStringsFromRandomOrgOperation: BaseOperation<String, GetString
1010

1111
override func main() {
1212

13-
let parameters = HTTPClient.Parameters.urlQuery(arrayBrakets: false, parameters: [
13+
let parameters = HTTPClient.BodyParameters.httpBody(arrayBrakets: false, parameters: [
1414
"num": "10",
1515
"len": "10",
1616
"digits": "on",
@@ -22,7 +22,7 @@ internal class GetStringsFromRandomOrgOperation: BaseOperation<String, GetString
2222
let requestOptions = HTTPClient.RequestOptions(endpoint: RandomOrgAPIEndpoint.strings,
2323
method: .get,
2424
parser: StringsParser(),
25-
parameters: parameters,
25+
bodyParameters: parameters,
2626
headers: [HTTPClient.ContentType.textPlain.acceptHeader()])
2727

2828
_ = options.randomOrgClient.sendRequest(options: requestOptions, completion: { [weak self] (result) in

TaskManager_Framework.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,7 @@
389389
DYLIB_INSTALL_NAME_BASE = "@rpath";
390390
INFOPLIST_FILE = TaskManager_Framework/Info.plist;
391391
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
392+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
392393
LD_RUNPATH_SEARCH_PATHS = (
393394
"$(inherited)",
394395
"@executable_path/Frameworks",
@@ -414,6 +415,7 @@
414415
DYLIB_INSTALL_NAME_BASE = "@rpath";
415416
INFOPLIST_FILE = TaskManager_Framework/Info.plist;
416417
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
418+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
417419
LD_RUNPATH_SEARCH_PATHS = (
418420
"$(inherited)",
419421
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)