Skip to content

Commit 6b5d4c4

Browse files
authored
Merge pull request #265 from longbai/pandora
修改版本号
2 parents 8cf4935 + 232fb01 commit 6b5d4c4

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
#Changelog
22

3-
## 7.1.8 (2016-09-18)
3+
## 7.2.1 (2017-12-05)
4+
## 修正
5+
* 进度回调实现导致内存泄漏
6+
7+
## 7.2.0 (2017-12-02)
8+
## 增加
9+
* 增加codecov 展示
10+
* **去掉AFNetworking依赖**
11+
12+
## 7.1.8 (2017-09-18)
413
## 修改
514
*audioZone zone访问对象排序更新
615
*chunkSize 默认增加为 2M

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.0'
3+
s.version = '7.2.1'
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.1.8";
14+
static const NSString *kQiniuVersion = @"7.2.1";

QiniuSDKTests/QNFileRecorderTest.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ - (void) template:(int)size pos:(float)pos {
8282
if (percent < pos - 256.0 / size) {
8383
failed = YES;
8484
}
85-
NSLog(@"continue progress %f,%f", percent,pos - 256.0 / size);
85+
NSLog(@"continue progress %f,%f", percent, pos - 256.0 / size);
8686
}
8787
params:nil
8888
checkCrc:NO
@@ -92,7 +92,7 @@ - (void) template:(int)size pos:(float)pos {
9292
info = i;
9393
}
9494
option:opt];
95-
NSLog(@"failed: %@",failed ? @"YES" : @"NO");
95+
NSLog(@"failed: %@", failed ? @"YES" : @"NO");
9696
AGWW_WAIT_WHILE(key == nil, 60 * 30);
9797
NSLog(@"info %@", info);
9898
XCTAssert(info.isOK, @"Pass");

0 commit comments

Comments
 (0)