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 v7.13.0 #574

Merged
merged 2 commits into from
Mar 29, 2023
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog
## 7.13.0(2023-03-30)
* Client 开放 head 请求方法
* BatchOperations 增加 size() 方法
* BucketManager 支持获取源站域名

## 7.12.1(2022-12-07)
* uc query 增加全局缓存
* 处理分片 v2 块大小设置无效问题
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
<version>[7.12.0, 7.12.99]</version>
<version>[7.13.0, 7.13.99]</version>
</dependency>
```
或者 Gradle:
```groovy
implementation 'com.qiniu:qiniu-java-sdk:7.12.+'
implementation 'com.qiniu:qiniu-java-sdk:7.13.+'
```

## 运行环境
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/qiniu/common/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public final class Constants {
/**
* 版本号
*/
public static final String VERSION = "7.12.1";
public static final String VERSION = "7.13.0";
/**
* 块大小,不能改变
*/
Expand Down