Skip to content

Commit fe318be

Browse files
author
karisli
committed
# 5.6.0
- 支持归档直传/-mta bugfix
1 parent 2b3952f commit fe318be

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
1+
# 5.6.0
2+
- 支持归档直传/-mta bugfix
3+
24
# 5.5.9
5+
36
- 增加scope数组,支持带权限的密钥
47
- 时差校验
58
- 增加是否重传的回调
@@ -12,7 +15,6 @@
1215
- 增加closeShareLog的接口
1316
- 增加网络性能检测的接口
1417
- mta删除idfa
15-
1618

1719
# 5.5.7
1820
-传输无法cancle的bug\ - 增加捞取log的功能

QCloudCOSXML.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "QCloudCOSXML"
3-
s.version = "5.5.9"
3+
s.version = "5.6.0"
44
s.summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
55

66
s.homepage = "https://cloud.tencent.com/"
@@ -9,12 +9,12 @@ s.version = "5.5.9"
99
s.source = { :git => "https://github.com/tencentyun/qcloud-sdk-ios.git", :tag => s.version.to_s }
1010
s.ios.deployment_target = '8.0'
1111
s.source_files = 'QCloudCOSXML/Classes/**/*'
12-
s.dependency "QCloudCore",'5.5.9'
12+
s.dependency "QCloudCore",'5.6.0'
1313
s.static_framework = true
1414

1515
s.subspec 'Transfer' do |sbt|
1616
sbt.source_files = 'QCloudCOSXML/Classes/*','QCloudCOSXML/Classes/Transfer/**/*','QCloudCOSXML/Classes/Base/*'
17-
sbt.dependency "QCloudCore",'5.5.9'
17+
sbt.dependency "QCloudCore",'5.6.0'
1818
# sbt.static_framework=true
1919
end
2020
end

QCloudCOSXML/Classes/Transfer/enum/QCloudCOSStorageClassEnum.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ typedef NS_ENUM(NSInteger, QCloudCOSStorageClass) {
3030

3131
QCloudCOSStorageStandard = 0,
3232
QCloudCOSStorageStandardIA = 1,
33+
QCloudCOSStorageARCHIVE = 2
3334
};
3435

3536
FOUNDATION_EXTERN QCloudCOSStorageClass QCloudCOSStorageClassDumpFromString(NSString* key);

QCloudCOSXML/Classes/Transfer/enum/QCloudCOSStorageClassEnum.m

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ QCloudCOSStorageClass QCloudCOSStorageClassDumpFromString(NSString* key) {
1616
}
1717
else if ([key isEqualToString:@"Standard_IA"]) {
1818
return QCloudCOSStorageStandardIA;
19+
}else if([key isEqualToString:@"ARCHIVE"]){
20+
return QCloudCOSStorageARCHIVE;
1921
}
2022
return 0;
2123
}
@@ -29,6 +31,10 @@ QCloudCOSStorageClass QCloudCOSStorageClassDumpFromString(NSString* key) {
2931
{
3032
return @"Standard_IA";
3133
}
34+
case QCloudCOSStorageARCHIVE:
35+
{
36+
return @"ARCHIVE";
37+
}
3238
default:
3339
return nil;
3440
}

QCloudCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "QCloudCore"
11-
s.version = "5.5.9"
11+
s.version = "5.6.0"
1212
s.summary = "QCloudCore--腾讯云iOS-SDK Foundation"
1313

1414
# This description is used to generate tags and improve search results.
121 KB
Binary file not shown.

0 commit comments

Comments
 (0)