Skip to content

Commit c7e53e0

Browse files
author
karisli
committed
# 5.8.2
- quic发布
1 parent e8dd1d4 commit c7e53e0

File tree

8 files changed

+37
-42
lines changed

8 files changed

+37
-42
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.8.2
2+
- quic发布
3+
14
# 5.8.1
25
修复 #import <CommonCrypto/CommonDigest.h> 大小写问题
36

QCloudCOSXML.podspec

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

4-
s.version = "5.8.1"
4+
s.version = "5.8.2"
55

66
s.summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
77

@@ -18,15 +18,15 @@ s.version = "5.8.1"
1818
s.default_subspec = 'Default'
1919
s.subspec 'Default' do |default|
2020
default.source_files = 'QCloudCOSXML/Classes/**/*','Models/request.model','QCloudCOSXML/Classes/QCloudCOSXML/*'
21-
default.dependency "QCloudCore",'5.8.1'
21+
default.dependency "QCloudCore",'5.8.2'
2222
end
2323
s.subspec 'Slim' do |slim|
2424
slim.source_files = 'QCloudCOSXML/Classes/**/*','Models/request.model','QCloudCOSXML/Classes/QCloudCOSXML/*'
25-
slim.dependency "QCloudCore/WithoutMTA",'5.8.1'
25+
slim.dependency "QCloudCore/WithoutMTA",'5.8.2'
2626
end
2727
s.subspec 'Transfer' do |transfer|
2828
transfer.source_files = 'QCloudCOSXML/Classes/*','QCloudCOSXML/Classes/Transfer/**/*','QCloudCOSXML/Classes/Base/*'
29-
transfer.dependency "QCloudCore/WithoutMTA",'5.8.1'
29+
transfer.dependency "QCloudCore/WithoutMTA",'5.8.2'
3030
end
3131

3232
end

QCloudCOSXML/Classes/QCloudCOSXMLVersion.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
#ifndef QCloudCOSXMLModuleVersion_h
77
#define QCloudCOSXMLModuleVersion_h
8-
#define QCloudCOSXMLModuleVersionNumber 508001
8+
#define QCloudCOSXMLModuleVersionNumber 508002
99

10-
//dependency
10+
// dependency
1111

1212
//
13-
FOUNDATION_EXTERN NSString * const QCloudCOSXMLModuleVersion;
14-
FOUNDATION_EXTERN NSString * const QCloudCOSXMLModuleName;
13+
FOUNDATION_EXTERN NSString *const QCloudCOSXMLModuleVersion;
14+
FOUNDATION_EXTERN NSString *const QCloudCOSXMLModuleName;
1515

16-
#endif
16+
#endif
Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
#import "QCloudCOSXMLVersion.h"
2-
NSString * const QCloudCOSXMLModuleVersion = @"5.8.1";
3-
NSString * const QCloudCOSXMLModuleName = @"QCloudCOSXML";
2+
NSString *const QCloudCOSXMLModuleVersion = @"5.8.2";
3+
NSString *const QCloudCOSXMLModuleName = @"QCloudCOSXML";
44
@interface QCloudQCloudCOSXMLLoad : NSObject
55
@end
66

77
@implementation QCloudQCloudCOSXMLLoad
8-
+ (void) load
9-
{
8+
+ (void)load {
109
Class cla = NSClassFromString(@"QCloudSDKModuleManager");
1110
if (cla) {
12-
NSMutableDictionary* module = [@{
13-
@"name" : QCloudCOSXMLModuleName,
14-
@"version" : QCloudCOSXMLModuleVersion
15-
} mutableCopy];
11+
NSMutableDictionary *module = [@{ @"name" : QCloudCOSXMLModuleName, @"version" : QCloudCOSXMLModuleVersion } mutableCopy];
1612

17-
NSString* buglyID = @"";
18-
if (buglyID.length > 0) {
19-
module[@"crashID"] = buglyID;
20-
}
13+
NSString *buglyID = @"";
14+
if (buglyID.length > 0) {
15+
module[@"crashID"] = buglyID;
16+
}
2117

2218
#pragma clang diagnostic push
2319
#pragma clang diagnostic ignored "-Wundeclared-selector"
@@ -26,4 +22,4 @@ + (void) load
2622
#pragma clang diagnostic pop
2723
}
2824
}
29-
@end
25+
@end

QCloudCore.podspec

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

12-
s.version = "5.8.1"
12+
s.version = "5.8.2"
1313

1414
s.summary = "QCloudCore--腾讯云iOS-SDK Foundation"
1515

QCloudCore/Classes/Base/QCloudCoreVersion.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
#ifndef QCloudCoreModuleVersion_h
77
#define QCloudCoreModuleVersion_h
8-
#define QCloudCoreModuleVersionNumber 508001
8+
#define QCloudCoreModuleVersionNumber 508002
99

10-
//dependency
10+
// dependency
1111

1212
//
13-
FOUNDATION_EXTERN NSString * const QCloudCoreModuleVersion;
14-
FOUNDATION_EXTERN NSString * const QCloudCoreModuleName;
13+
FOUNDATION_EXTERN NSString *const QCloudCoreModuleVersion;
14+
FOUNDATION_EXTERN NSString *const QCloudCoreModuleName;
1515

16-
#endif
16+
#endif
Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
#import "QCloudCoreVersion.h"
2-
NSString * const QCloudCoreModuleVersion = @"5.8.1";
3-
NSString * const QCloudCoreModuleName = @"QCloudCore";
2+
NSString *const QCloudCoreModuleVersion = @"5.8.2";
3+
NSString *const QCloudCoreModuleName = @"QCloudCore";
44
@interface QCloudQCloudCoreLoad : NSObject
55
@end
66

77
@implementation QCloudQCloudCoreLoad
8-
+ (void) load
9-
{
8+
+ (void)load {
109
Class cla = NSClassFromString(@"QCloudSDKModuleManager");
1110
if (cla) {
12-
NSMutableDictionary* module = [@{
13-
@"name" : QCloudCoreModuleName,
14-
@"version" : QCloudCoreModuleVersion
15-
} mutableCopy];
11+
NSMutableDictionary *module = [@{ @"name" : QCloudCoreModuleName, @"version" : QCloudCoreModuleVersion } mutableCopy];
1612

17-
NSString* buglyID = @"";
18-
if (buglyID.length > 0) {
19-
module[@"crashID"] = buglyID;
20-
}
13+
NSString *buglyID = @"";
14+
if (buglyID.length > 0) {
15+
module[@"crashID"] = buglyID;
16+
}
2117

2218
#pragma clang diagnostic push
2319
#pragma clang diagnostic ignored "-Wundeclared-selector"
@@ -26,4 +22,4 @@ + (void) load
2622
#pragma clang diagnostic pop
2723
}
2824
}
29-
@end
25+
@end

QCloudQuic.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 = "QCloudQuic"
11-
s.version = "0.1.0"
11+
s.version = "5.8.2"
1212
s.summary = "QCloudQuic 腾讯云iOS-SDK组件"
1313

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

0 commit comments

Comments
 (0)