From fdf96d8cb1ba143e417fc67606b22ff92fcb9633 Mon Sep 17 00:00:00 2001 From: YangSen-qn Date: Wed, 29 Mar 2023 15:46:57 +0800 Subject: [PATCH] version to v8.5.2 --- CHANGELOG.md | 3 +++ Qiniu.podspec | 2 +- QiniuSDK/Utils/QNVersion.h | 2 +- README.md | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f571b9a..f1eb10e1 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ #Changelog +## 8.5.2 (2022-12-28) +- 处理 Server 配置同步并发问题 + ## 8.5.1 (2022-12-28) - 优化 Server 配置获取逻辑 diff --git a/Qiniu.podspec b/Qiniu.podspec index 1eb2fbe8..5fb25bb9 100755 --- a/Qiniu.podspec +++ b/Qiniu.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Qiniu' - s.version = '8.5.1' + s.version = '8.5.2' s.summary = 'Qiniu Resource Storage SDK for iOS and Mac' s.homepage = 'https://github.com/qiniu/objc-sdk' s.social_media_url = 'http://weibo.com/qiniutek' diff --git a/QiniuSDK/Utils/QNVersion.h b/QiniuSDK/Utils/QNVersion.h index 4cb7afa7..92d90f34 100755 --- a/QiniuSDK/Utils/QNVersion.h +++ b/QiniuSDK/Utils/QNVersion.h @@ -11,4 +11,4 @@ /** * sdk 版本 */ -static NSString *const kQiniuVersion = @"8.5.1"; +static NSString *const kQiniuVersion = @"8.5.2"; diff --git a/README.md b/README.md index ba899b12..f7670890 100755 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ 通过 CocoaPods ```ruby -pod "Qiniu", "~> 8.5.1" +pod "Qiniu", "~> 8.5.2" ``` 通过 Swift Package Manager (Xcode 11+) @@ -26,7 +26,7 @@ File -> Swift Packages -> Add Package Dependency,输入库链接,选择相 库对接: let package = Package( dependencies: [ - .package(url: "https://github.com/qiniu/objc-sdk", from: "8.5.1") + .package(url: "https://github.com/qiniu/objc-sdk", from: "8.5.2") ], // ... )