Skip to content

Commit 29a000d

Browse files
authored
Merge pull request #431 from YangSen-qn/master
version to v8.5.3
2 parents 5aacb6a + 4526274 commit 29a000d

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#Changelog
2+
## 8.5.3 (2023-06-29)
3+
- 对 Dns 预解析和网络检测中的默认域名进行 Base64 处理
4+
- HappyDns 依赖升至 [v1.0.3](https://github.com/qiniu/happy-dns-objc/releases/tag/v1.0.3)
5+
26
## 8.5.2 (2022-12-28)
37
- 处理 Server 配置同步并发问题
48

Diff for: Podfile

+1-1
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.2'
4+
pod 'HappyDNS', '~> 1.0.3'
55
# pod 'HappyDNS', :path => '../HappyDns_iOS'
66
end
77

Diff for: Qiniu.podspec

+1-1
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.5.2'
3+
s.version = '8.5.3'
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'

Diff for: QiniuSDK/Utils/QNVersion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
/**
1212
* sdk 版本
1313
*/
14-
static NSString *const kQiniuVersion = @"8.5.2";
14+
static NSString *const kQiniuVersion = @"8.5.3";

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
通过 CocoaPods
1515

1616
```ruby
17-
pod "Qiniu", "~> 8.5.2"
17+
pod "Qiniu", "~> 8.5.3"
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.5.2")
29+
.package(url: "https://github.com/qiniu/objc-sdk", from: "8.5.3")
3030
],
3131
// ...
3232
)

0 commit comments

Comments
 (0)