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

bump version to v7.22.0 #141

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 7.22.0
* 新增
* 新版存储客户端库 storagev2 包,包含
* 新的 [uploader](github.com/qiniu/go-sdk/v7/storagev2/uploader) 包设计,提供更好的对象上传接口
* 新的 [downloader](github.com/qiniu/go-sdk/v7/storagev2/downloader) 包设计,提供更好的对象下载接口
* 新的 [objects](github.com/qiniu/go-sdk/v7/storagev2/objects) 包设计,提供更好的对象管理接口
* 为 HTTP 客户端新增防劫持能力
* 调整
* 查询区域主备域名
* 修复
* Go SDK v7.21.1 可能出现崩溃的问题

## 7.21.1
* 修复
* 修复通过 ResumeUploaderV2 上传的文件无法正确设置 Content-Type 的问题
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ github.com/qiniu/go-sdk
在您的项目中的 `go.mod` 文件内添加这行代码

```
require github.com/qiniu/go-sdk/v7 v7.21.1
require github.com/qiniu/go-sdk/v7 v7.22.0
```

并且在项目中使用 `"github.com/qiniu/go-sdk/v7"` 引用 Qiniu Go SDK。
Expand Down
2 changes: 1 addition & 1 deletion conf/conf.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/qiniu/go-sdk/v7/internal/env"
)

const Version = "7.21.1"
const Version = "7.22.0"

const (
CONTENT_TYPE_JSON = "application/json"
Expand Down
Loading