Skip to content

Commit 97b046e

Browse files
author
garenwang
committed
# 6.1.1
1 parent 4e56f15 commit 97b046e

File tree

6 files changed

+22
-20
lines changed

6 files changed

+22
-20
lines changed

CHANGELOG.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
1-
# 6.1.0
2-
1.优化service注册校验逻辑。2.修复全部取消。
1+
# 6.1.1
32

4-
# 6.0.9
3+
4+
# 6.1.0
55

6-
1.新增内容审核接口
6+
1.优化service注册校验逻辑。2.修复全部取消。
7+
8+
# 6.0.9
79

10+
1.新增内容审核接口
11+
812
# 6.0.8
913

1014
1.修改sdk与yymodel 方法命名冲突。2.修改一些SDK 内部一些警告
1115

1216
# 6.0.7
1317

1418
优化QCloudCore
15-
16-
# 6.0.6
17-
18-
修改sdkdonwlaodbug
19-
19+
2020
# 6.0.5
2121

2222
修改已知bug
23+
24+
# 6.0.5
25+
2326
QCloudQuic 增加 Slim subspec
2427

2528
# 6.0.4

QCloudCOSXML.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |s|
22
s.name = "QCloudCOSXML"
33

44

5-
s.version = "6.1.0"
5+
s.version = "6.1.1"
66

77

88
s.summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
@@ -22,15 +22,15 @@ s.version = "6.1.0"
2222
s.subspec 'Default' do |default|
2323
default.source_files = 'QCloudCOSXML/Classes/**/*','QCloudCOSXML/Classes/QCloudCOSXML/*'
2424

25-
default.dependency "QCloudCore",'6.1.0'
25+
default.dependency "QCloudCore",'6.1.1'
2626
end
2727
s.subspec 'Slim' do |slim|
2828
slim.source_files = 'QCloudCOSXML/Classes/**/*','QCloudCOSXML/Classes/QCloudCOSXML/*'
29-
slim.dependency "QCloudCore/WithoutMTA",'6.1.0'
29+
slim.dependency "QCloudCore/WithoutMTA",'6.1.1'
3030
end
3131
s.subspec 'Transfer' do |transfer|
3232
transfer.source_files = 'QCloudCOSXML/Classes/*','QCloudCOSXML/Classes/Transfer/**/*','QCloudCOSXML/Classes/Base/**/*'
33-
transfer.dependency "QCloudCore/WithoutMTA",'6.1.0'
33+
transfer.dependency "QCloudCore/WithoutMTA",'6.1.1'
3434

3535
end
3636

QCloudCOSXML/Classes/Transfer/QCloudCOSTransferMangerService.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//
3131

3232
#import "QCloudCOSTransferMangerService.h"
33-
#import <QCLoudCore/QCloudThreadSafeMutableDictionary.h>
33+
#import <QCloudCore/QCloudThreadSafeMutableDictionary.h>
3434
#import <QCloudCore/QCloudError.h>
3535

3636
#import "QCloudPutObjectRequest.h"
@@ -42,7 +42,6 @@
4242
#import "QCloudCOSXMLUploadObjectRequest_Private.h"
4343
#import "QCloudCOSXMLDownloadObjectRequest.h"
4444
#import "QCloudCOSXMLCopyObjectRequest.h"
45-
#import <QCloudCore/QCloudThreadSafeMutableDictionary.h>
4645
QCloudThreadSafeMutableDictionary *QCloudCOSTransferMangerServiceCache() {
4746
static QCloudThreadSafeMutableDictionary *CloudcostransfermangerService = nil;
4847
static dispatch_once_t onceToken;

QCloudCOSXML/Classes/Transfer/request/QCloudCOSXMLDownloadObjectRequest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ - (void)startGetObject {
137137
[request setDownProcessBlock:^(int64_t bytesDownload, int64_t totalBytesDownload, int64_t totalBytesExpectedToDownload) {
138138
__strong typeof(weakSelf) strongSelf = self;
139139
currentTotalBytesDownload = totalBytesDownload;
140-
QCloudLogInfo(@"🔽🔽🔽🔽🔽downProcess %lld %lld %ld",totalBytesDownload,currentTotalBytesDownload,totalBytesExpectedToDownload);
140+
QCloudLogInfo(@"🔽🔽🔽🔽🔽downProcess %lld %lld %ld",bytesDownload,totalBytesDownload,totalBytesExpectedToDownload);
141141
if(strongSelf.downProcessBlock){
142142
strongSelf.downProcessBlock(bytesDownload, totalBytesDownload, totalBytesExpectedToDownload);
143143
}

QCloudCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.name = "QCloudCore"
1111

1212

13-
s.version = "6.1.0"
13+
s.version = "6.1.1"
1414

1515

1616

QCloudQuic.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.name = "QCloudQuic"
1111

1212

13-
s.version = "6.1.0"
13+
s.version = "6.1.1"
1414

1515

1616
s.summary = "QCloudQuic 腾讯云iOS-SDK组件"
@@ -39,12 +39,12 @@ s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
3939
s.subspec 'Default' do |default|
4040
default.source_files = 'QCloudQuic/Classes/*', 'QCloudQuic/Classes/QCloudBase/**/*','QCloudQuic/Classes/QuicFramework//*.{h}'
4141
default.vendored_frameworks = 'QCloudQuic/Classes/QuicFramework/Tquic.framework'
42-
default.dependency "QCloudCOSXML",'6.1.0'
42+
default.dependency "QCloudCOSXML",'6.1.1'
4343
end
4444
s.subspec 'Slim' do |slim|
4545
slim.source_files = 'QCloudQuic/Classes/*', 'QCloudQuic/Classes/QCloudBase/**/*','QCloudQuic/Classes/QuicFramework//*.{h}'
4646
slim.vendored_frameworks = 'QCloudQuic/Classes/QuicFramework/Tquic.framework'
47-
slim.dependency "QCloudCOSXML/Slim",'6.1.0'
47+
slim.dependency "QCloudCOSXML/Slim",'6.1.1'
4848
end
4949

5050

0 commit comments

Comments
 (0)