Skip to content

Commit 13936aa

Browse files
authored
Merge pull request #333 from YangSen-qn/dns_develop
bump version to 7.4.0
2 parents 67f35d9 + 12dbfe2 commit 13936aa

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#Changelog
22

3+
## 7.4.0 (2020-06-09)
4+
## 增加
5+
新增Dns预解析功能,上传请求大概率跳过Dns解析步骤,提高上传质量。
6+
37
## 7.3.5 (2020-05-29)
48
## 增加
59
日志上报errorType新增prototol_error协议错误

Qiniu.podspec

Lines changed: 2 additions & 2 deletions
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.3.5'
3+
s.version = '7.4.0'
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'
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
s.license = { :type => "MIT", :text => <<-LICENSE
1717
The MIT License (MIT)
1818
19-
Copyright (c) 2011-2017 qiniu.com
19+
Copyright (c) 2011-2020 qiniu.com
2020
2121
Permission is hereby granted, free of charge, to any person obtaining a copy
2222
of this software and associated documentation files (the "Software"), to deal

QiniuSDK/Utils/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 NSString *const kQiniuVersion = @"7.3.5";
14+
static NSString *const kQiniuVersion = @"7.4.0";

QiniuSDKTests/QNComplexUploadSceneTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ - (void)testMutiUpload{
3333
__block int completeCount = 0;
3434
__block int successCount = 0;
3535
for (int i=0; i<maxCount; i++) {
36-
[self template:(i + 1) * 1024 complete:^(BOOL isSuccess){
36+
[self template:(i + 1) * 100 complete:^(BOOL isSuccess){
3737
@synchronized (self) {
3838
if (isSuccess) {
3939
successCount += 1;

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ pod "Qiniu", "~> 7.3"
2020

2121
| Qiniu SDK 版本 | 最低 iOS版本 | 最低 OS X 版本 | Notes |
2222
| :--------------------------------------: | :------: | :--------: | :-----------: |
23+
| 7.4.x | iOS 7 | OS X 10.9 | Xcode 最低版本 6. |
2324
| 7.3.x | iOS 7 | OS X 10.9 | Xcode 最低版本 6. |
2425
| 7.2.x | iOS 7 | OS X 10.9 | Xcode 最低版本 6. |
2526
| 7.1.x / AFNetworking-3.x | iOS 7 | OS X 10.9 | Xcode 最低版本 6. |

0 commit comments

Comments
 (0)