Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version to v8.8.0 #446

Merged
merged 32 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
649473d
version to 8.6.0
Aug 7, 2023
f26067a
update v8.6.0 CHANGELOG.md
Aug 7, 2023
182ec1b
update test token
Aug 7, 2023
46e9f94
change test case
Aug 7, 2023
74f4677
IPHONEOS_DEPLOYMENT_TARGET to 9.0 & fix some warning
Aug 14, 2023
0d6dd36
Merge branch 'master' of YangSen-qn:qiniu/objc-sdk
Aug 14, 2023
fcbd608
change readme
Aug 14, 2023
3365af1
change test profile
Aug 16, 2023
8ffc20b
add createWithRegionId
Sep 7, 2023
712ccce
FixZone deprecated some builder api
Sep 12, 2023
488e0f1
Merge branch 'master' of YangSen-qn:qiniu/objc-sdk into fixzone-creator
Oct 20, 2023
6aa3861
version to v8.7.0
Oct 20, 2023
d5bff81
Merge branch 'master' of YangSen-qn:qiniu/objc-sdk
Oct 20, 2023
a6e6539
Merge branch 'fixzone-creator'
Oct 20, 2023
9e74e8f
Merge branch 'master' of YangSen-qn:qiniu/objc-sdk
Oct 23, 2023
8dac547
handle cache timestamp
Nov 6, 2023
c047858
uc query add host: uc.qiniuapi.com
Nov 13, 2023
e7dcaed
change ci cocopods version to 1.14.2
Nov 13, 2023
9c54854
change http scheme logic: prefer using url self scheme
Nov 16, 2023
e77a14a
version to 8.7.1
Nov 23, 2023
c70d92d
add PrivacyInfo
Mar 22, 2024
6169864
Merge branch 'master' of YangSen-qn:qiniu/objc-sdk
Mar 22, 2024
79940c8
version to v8.7.2
Apr 11, 2024
cf00aaa
change test token
Apr 11, 2024
3f49fde
fix: test case
Apr 11, 2024
917bfaa
upload support acc
May 27, 2024
6ca6640
Merge branch 'master' of YangSen-qn:qiniu/objc-sdk
May 27, 2024
0071fdd
version check
May 27, 2024
da1929d
uc host remove api*
May 27, 2024
fd209d7
support acc upload
May 28, 2024
f13ea32
version to v8.8.0
Jun 24, 2024
21529c6
Merge branch 'master' of YangSen-qn:qiniu/objc-sdk
Jun 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#Changelog
## 8.8.0(2024-06-24)
- 上传支持加速域名
- 查询区域移除备用域名:api.qiniu.com

## 8.7.2(2024-04-11)
- 增加 PrivacyInfo 文件

Expand Down
2 changes: 1 addition & 1 deletion Qiniu.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Qiniu'
s.version = '8.7.2'
s.version = '8.8.0'
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'
Expand Down
2 changes: 1 addition & 1 deletion QiniuSDK/Utils/QNVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
/**
* sdk 版本
*/
static NSString *const kQiniuVersion = @"8.7.2";
static NSString *const kQiniuVersion = @"8.8.0";
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
通过 CocoaPods

```ruby
pod "Qiniu", "~> 8.7.2"
pod "Qiniu", "~> 8.8.0"
```

通过 Swift Package Manager (Xcode 11+)
Expand All @@ -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.2")
.package(url: "https://github.com/qiniu/objc-sdk", from: "8.8.0")
],
// ...
)
Expand All @@ -37,6 +37,7 @@ let package = Package(

| Qiniu SDK 版本 | 最低 iOS版本 | 最低 OS X 版本 | Notes |
| :--------------------------------------: | :------: | :--------: | :-----------: |
| 8.8.x | iOS 9 | OS X 10.15 | Xcode 最低版本 11 |
| 8.7.x | iOS 9 | OS X 10.15 | Xcode 最低版本 11 |
| 8.6.x | iOS 7 | OS X 10.15 | Xcode 最低版本 11 |
| 8.5.x | iOS 7 | OS X 10.15 | Xcode 最低版本 11 |
Expand Down
Loading