From e77a14a09bd8f18e63d2868b727c5933c3581f26 Mon Sep 17 00:00:00 2001 From: YangSen-qn Date: Thu, 23 Nov 2023 14:48:01 +0800 Subject: [PATCH] version to 8.7.1 --- 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 5f4d6f82..6ebf5e50 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ #Changelog +## 8.7.1(2023-11-23) +- 查询区域的主备域名增加 uc.qiniuapi.com + ## 8.7.0(2023-10-23) - iOS 最低版本调整至 iOS9 - QNFixedZone 新增通过 RegionID 构造实例的方法 diff --git a/Qiniu.podspec b/Qiniu.podspec index b49d2a00..ee88e463 100755 --- a/Qiniu.podspec +++ b/Qiniu.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Qiniu' - s.version = '8.7.0' + s.version = '8.7.1' 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 45350979..56d5be71 100755 --- a/QiniuSDK/Utils/QNVersion.h +++ b/QiniuSDK/Utils/QNVersion.h @@ -11,4 +11,4 @@ /** * sdk 版本 */ -static NSString *const kQiniuVersion = @"8.7.0"; +static NSString *const kQiniuVersion = @"8.7.1"; diff --git a/README.md b/README.md index 11837321..c0f223ba 100755 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ 通过 CocoaPods ```ruby -pod "Qiniu", "~> 8.7.0" +pod "Qiniu", "~> 8.7.1" ``` 通过 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.7.0") + .package(url: "https://github.com/qiniu/objc-sdk", from: "8.7.1") ], // ... )