Skip to content

Commit 0c644c9

Browse files
authored
Merge pull request #412 from YangSen-qn/develop
change dependent: HappyDns version
2 parents cfcfd0c + d0bb2fa commit 0c644c9

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#Changelog
2+
## 8.4.4 (2022-06-02)
3+
- HappyDns 依赖升至 [v1.0.2](https://github.com/qiniu/happy-dns-android/releases/tag/v1.0.2)
4+
25
## 8.4.3 (2022-05-18)
36
- 优化表单上传:当出现内存问题抛出错误
47
- 优化分片 v1 上传:强化验证上传块数据验证

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source 'https://github.com/CocoaPods/Specs.git'
22

33
def shared_dependencies
4-
pod 'HappyDNS', '~> 1.0.0'
4+
pod 'HappyDNS', '~> 1.0.2'
55
# pod 'HappyDNS', :path => '../HappyDns_iOS'
66
end
77

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 = '8.4.3'
3+
s.version = '8.4.4'
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'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.source_files = 'QiniuSDK/BigData/**/*.{h,m}','QiniuSDK/Collect/**/*.{h,m}','QiniuSDK/Common/**/*.{h,m}','QiniuSDK/Http/**/*.{h,m}','QiniuSDK/Recorder/**/*.{h,m}','QiniuSDK/Storage/**/*.{h,m}','QiniuSDK/Transaction/**/*.{h,m}','QiniuSDK/Utils/**/*.{h,m}','QiniuSDK/QiniuSDK.h'
1414
s.requires_arc = true
1515
s.libraries = 'z'
16-
s.dependency 'HappyDNS', '~> 1.0.0'
16+
s.dependency 'HappyDNS', '~> 1.0.2'
1717
s.license = { :type => "MIT", :text => <<-LICENSE
1818
The MIT License (MIT)
1919

QiniuSDK/Http/Dns/QNDnsPrefetch.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -731,10 +731,10 @@ - (QNDnsCacheFile *)diskCache {
731731
}
732732

733733
- (QNInternalDns *)customDns {
734-
if (_systemDns == nil && kQNGlobalConfiguration.dns) {
735-
_systemDns = [QNInternalDns dnsWithDns:kQNGlobalConfiguration.dns];
734+
if (_customDns == nil && kQNGlobalConfiguration.dns) {
735+
_customDns = [QNInternalDns dnsWithDns:kQNGlobalConfiguration.dns];
736736
}
737-
return _systemDns;
737+
return _customDns;
738738
}
739739

740740
- (QNInternalDns *)systemDns {

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
通过 CocoaPods
1515

1616
```ruby
17-
pod "Qiniu", "~> 8.4.3"
17+
pod "Qiniu", "~> 8.4.4"
1818
```
1919

2020
通过 Swift Package Manager (Xcode 11+)
@@ -26,7 +26,7 @@ File -> Swift Packages -> Add Package Dependency,输入库链接,选择相
2626
库对接:
2727
let package = Package(
2828
dependencies: [
29-
.package(url: "https://github.com/qiniu/objc-sdk", from: "8.4.3")
29+
.package(url: "https://github.com/qiniu/objc-sdk", from: "8.4.4")
3030
],
3131
// ...
3232
)

0 commit comments

Comments
 (0)