Skip to content

Commit b472a53

Browse files
authored
Merge pull request #559 from zapcannon87/master
Release v11.6.2
2 parents b5cdf84 + 39dee87 commit b472a53

File tree

5 files changed

+5
-11
lines changed

5 files changed

+5
-11
lines changed

AVOS/AVOSCloud/Cache/AVCacheManager.m

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ - (instancetype)init {
3838
self = [super init];
3939
if (self) {
4040
_cacheQueue = dispatch_queue_create("avos.paas.cacheQueue", DISPATCH_QUEUE_SERIAL);
41+
_diskCachePath = [AVCacheManager path];
4142
}
4243
return self;
4344
}
@@ -47,13 +48,6 @@ + (NSString *)path {
4748
return [AVPersistenceUtils avCacheDirectory];
4849
}
4950

50-
- (NSString *)diskCachePath {
51-
if (!_diskCachePath) {
52-
_diskCachePath = [AVCacheManager path];
53-
}
54-
return _diskCachePath;
55-
}
56-
5751
- (NSString *)pathForKey:(NSString *)key {
5852
return [self.diskCachePath stringByAppendingPathComponent:key];
5953
}

AVOS/AVOSCloud/UserAgent.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define SDK_VERSION @"v11.6.1"
1+
#define SDK_VERSION @"v11.6.2"

AVOSCloud.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AVOSCloud'
3-
s.version = '11.6.1'
3+
s.version = '11.6.2'
44
s.homepage = 'https://leancloud.cn/'
55
s.summary = 'LeanCloud Objective-C SDK'
66
s.authors = 'LeanCloud'

AVOSCloudIM.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AVOSCloudIM'
3-
s.version = '11.6.1'
3+
s.version = '11.6.2'
44
s.homepage = 'https://leancloud.cn/'
55
s.summary = 'LeanCloud IM Objective-C SDK'
66
s.authors = 'LeanCloud'

AVOSCloudLiveQuery.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AVOSCloudLiveQuery'
3-
s.version = '11.6.1'
3+
s.version = '11.6.2'
44
s.homepage = 'https://leancloud.cn/'
55
s.summary = 'LeanCloud LiveQuery Objective-C SDK'
66
s.authors = 'LeanCloud'

0 commit comments

Comments
 (0)