Skip to content

Commit b3dee39

Browse files
committed
[ci skip] version update
1 parent 82efc38 commit b3dee39

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

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

3+
## 7.0.6 (2014-10-31)
4+
5+
### 修正
6+
* 检查因网络断开服务器返回空body或者非七牛服务器的情况
7+
* 增加timeout
8+
39
## 7.0.5 (2014-10-28)
410

511
### 修正
612
* ResumeUpload中httpManager weak引用造成nil
713
* 重构代码,更符合objc 现代方式
814

9-
1015
## 7.0.4 (2014-10-17)
1116

1217
### 增加

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.0.5'
3+
s.version = '7.0.6'
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
@@ -8,4 +8,4 @@
88

99
#import <Foundation/Foundation.h>
1010

11-
static const NSString *kQiniuVersion = @"7.0.5";
11+
static const NSString *kQiniuVersion = @"7.0.6";

QiniuSDK/Http/QNResponseInfo.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ - (BOOL)isOK {
9898
}
9999

100100
- (BOOL)isConnectionBroken {
101+
// reqId is nill means the server is not qiniu
101102
return _statusCode == kQNNetworkError || _reqId == nil;
102103
}
103104

0 commit comments

Comments
 (0)