Skip to content

Commit 29cdd7f

Browse files
authored
Merge pull request #271 from longbai/pandora
release 7.2.3
2 parents 217b5ae + 7db076c commit 29cdd7f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

Qiniu.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 = 'Qiniu'
3-
s.version = '7.2.2'
3+
s.version = '7.2.3'
44
s.summary = 'Qiniu Resource Storage SDK for iOS and Mac'
55
s.homepage = 'https://github.com/qiniu/objc-sdk'
66
s.social_media_url = 'http://weibo.com/qiniutek'

QiniuSDK/Common/QNVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
/**
1212
* sdk 版本
1313
*/
14-
static const NSString *kQiniuVersion = @"7.2.2";
14+
static const NSString *kQiniuVersion = @"7.2.3";

QiniuSDK/Storage/QNUpToken.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ - (NSString *)getAccess {
3737
- (NSString *)getBucket:(NSDictionary *)info {
3838

3939
NSString *scope = [info objectForKey:@"scope"];
40-
if (!scope || [scope isKindOfClass:[NSNull class]] ) {
40+
if (!scope || [scope isKindOfClass:[NSNull class]]) {
4141
return @"";
4242
}
4343

QiniuSDKTests/QNUpTokenTest.m

100755100644
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,4 @@ - (void)testScopeNull {
6262
XCTAssert([t.bucket isEqualToString:@""], @"Pass");
6363
}
6464

65-
6665
@end

0 commit comments

Comments
 (0)