Skip to content

Commit 1f9a512

Browse files
author
erichmzhang
committed
# 5.5.1
-将部分文件与 FCUUID 作区分
1 parent c14cbc3 commit 1f9a512

File tree

11 files changed

+16
-13
lines changed

11 files changed

+16
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.5.1
2+
-将部分文件与 FCUUID 作区分
3+
14
# 5.5.0
25
- 增加了后台上传的功能,当 APP 切到后台时,仍然可以继续上传。
36
- EndPoint中可以使用自定义的 ServerURL, 如加速上传域名等。

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.0"
3+
s.version = "5.5.1"
44
s.summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
55

66
s.homepage = "https://cloud.tencent.com/"
@@ -9,12 +9,12 @@ s.version = "5.5.0"
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.0'
12+
s.dependency "QCloudCore",'5.5.1'
1313
s.static_framework = true
1414

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

QCloudCOSXML/Classes/Base/QCloudCOSXMLService.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#import "QCloudCOSXMLService+Private.h"
3030
#import <QCloudCore/QCloudThreadSafeMutableDictionary.h>
3131
#import <QCloudCore/QCLoudError.h>
32-
#import "UIDevice+FCUUID.h"
32+
#import "UIDevice+QCloudFCUUID.h"
3333
QCloudThreadSafeMutableDictionary* QCloudCOSXMLServiceCache()
3434
{
3535
static QCloudThreadSafeMutableDictionary* CloudcosxmlService = nil;

QCloudCOSXML/Classes/QCloudCOSXMLVersion.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
#ifndef QCloudCOSXMLModuleVersion_h
88
#define QCloudCOSXMLModuleVersion_h
9-
#define QCloudCOSXMLModuleVersionNumber 505000
9+
#define QCloudCOSXMLModuleVersionNumber 505001
1010

1111
//dependency
12-
#if QCloudCoreModuleVersionNumber != 505000
13-
#error "库QCloudCOSXML依赖QCloudCore最小版本号为5.5.0,当前引入的QCloudCore版本号过低,请及时升级后使用"
12+
#if QCloudCoreModuleVersionNumber != 505001
13+
#error "库QCloudCOSXML依赖QCloudCore最小版本号为5.5.1,当前引入的QCloudCore版本号过低,请及时升级后使用"
1414
#endif
1515

1616
//

QCloudCOSXML/Classes/QCloudCOSXMLVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import "QCloudCOSXMLVersion.h"
2-
NSString * const QCloudCOSXMLModuleVersion = @"5.5.0";
2+
NSString * const QCloudCOSXMLModuleVersion = @"5.5.1";
33
NSString * const QCloudCOSXMLModuleName = @"QCloudCOSXML";
44
@interface QCloudQCloudCOSXMLLoad : NSObject
55
@end

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.0"
11+
s.version = "5.5.1"
1212
s.summary = "QCloudCore--腾讯云iOS-SDK Foundation"
1313

1414
# This description is used to generate tags and improve search results.

QCloudCore/Classes/FCUUID/UIDevice+FCUUID.m renamed to QCloudCore/Classes/FCUUID/UIDevice+QCloudFCUUID.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Copyright © 2015 Fabio Caccamo. All rights reserved.
66
//
77

8-
#import "UIDevice+FCUUID.h"
8+
#import "UIDevice+QCloudFCUUID.h"
99

1010
@implementation UIDevice (QCloudFCUUID)
1111

QCloudCore/Classes/QCLOUDRestNet/SessionSupport/QCloudHTTPSessionManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#import "QCloudFileOffsetBody.h"
2626
#import "QCloudRequestData.h"
2727
#import "QCloudService.h"
28-
#import "UIDevice+FCUUID.h"
28+
#import "UIDevice+QCloudFCUUID.h"
2929
#import "QCloudThreadSafeMutableDictionary.h"
3030
#import "QCloudWeakProxy.h"
3131
NSString* TaskDataKey(int64_t identifier){

QCloudCore/Classes/QCloudCoreVersion.h

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

66
#ifndef QCloudCoreModuleVersion_h
77
#define QCloudCoreModuleVersion_h
8-
#define QCloudCoreModuleVersionNumber 505000
8+
#define QCloudCoreModuleVersionNumber 505001
99

1010
//dependency
1111

0 commit comments

Comments
 (0)