Skip to content

Commit e678843

Browse files
author
garenwang
committed
5.9.7
1 parent 08b476b commit e678843

File tree

16 files changed

+45
-156
lines changed

16 files changed

+45
-156
lines changed

CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# 5.9.8
2-
3-
41
# 5.9.7
52
1.修复ios15灯塔socket crash
63

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 = "5.9.8"
5+
s.version = "5.9.7"
66

77

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

25-
default.dependency "QCloudCore",'5.9.8'
25+
default.dependency "QCloudCore",'5.9.7'
2626
end
2727
s.subspec 'Slim' do |slim|
2828
slim.source_files = 'QCloudCOSXML/Classes/**/*','QCloudCOSXML/Classes/QCloudCOSXML/*'
29-
slim.dependency "QCloudCore/WithoutMTA",'5.9.8'
29+
slim.dependency "QCloudCore/WithoutMTA",'5.9.7'
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",'5.9.8'
33+
transfer.dependency "QCloudCore/WithoutMTA",'5.9.7'
3434

3535
end
3636

QCloudCOSXML/Classes/QCloudCOSXMLVersion.h

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

66
#ifndef QCloudCOSXMLModuleVersion_h
77
#define QCloudCOSXMLModuleVersion_h
8-
#define QCloudCOSXMLModuleVersionNumber 509008
8+
#define QCloudCOSXMLModuleVersionNumber 509007
99

1010
//dependency
1111

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.9.8";
2+
NSString * const QCloudCOSXMLModuleVersion = @"5.9.7";
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
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.name = "QCloudCore"
1111

1212

13-
s.version = "5.9.8"
13+
s.version = "5.9.7"
1414

1515

1616

QCloudCore/Classes/Base/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 509008
8+
#define QCloudCoreModuleVersionNumber 509007
99

1010
//dependency
1111

QCloudCore/Classes/Base/QCloudCoreVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import "QCloudCoreVersion.h"
2-
NSString * const QCloudCoreModuleVersion = @"5.9.8";
2+
NSString * const QCloudCoreModuleVersion = @"5.9.7";
33
NSString * const QCloudCoreModuleName = @"QCloudCore";
44
@interface QCloudQCloudCoreLoad : NSObject
55
@end
232 KB
Binary file not shown.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//
2+
// BeaconId.h
3+
// BeaconId
4+
//
5+
// Created by jackhuali on 2020/7/23.
6+
// Copyright © 2020 tencent. All rights reserved.
7+
//
8+
9+
#ifndef BeaconId_h
10+
#define BeaconId_h
11+
12+
#import <BeaconId/BeaconIdInfoCollector.h>
13+
14+
#endif /* BeaconId_h */
15+
#define BEACONID_SDK_VERSION @"1.0.7"
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//
2+
// BeaconIdInfoCollector.h
3+
// BeaconAPI_Base
4+
//
5+
// Created by jackhuali on 2020/4/22.
6+
// Copyright © 2020 tencent.com. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
NS_ASSUME_NONNULL_BEGIN
12+
13+
@interface BeaconIdInfoCollector : NSObject
14+
15+
/// 采集指纹,会在内存缓存,内存有值时,直接返回内存的指纹
16+
+ (nullable NSString *)collectBeaconIdInfo;
17+
18+
@end
19+
20+
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)