Skip to content

Commit 470d89a

Browse files
author
yangsen
committed
change version
1 parent 760ad38 commit 470d89a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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.1'
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.2'
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.2"
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.2")
29+
.package(url: "https://github.com/qiniu/objc-sdk", from: "8.4.4")
3030
],
3131
// ...
3232
)

0 commit comments

Comments
 (0)