Browse Source

release 1.9.3

hangzws 7 years ago
parent
commit
6a25665e65
4 changed files with 17 additions and 5 deletions
  1. 10 0
      CHANGELOG.md
  2. 3 2
      README-CN.md
  3. 3 2
      README.md
  4. 1 1
      oss/const.go

+ 10 - 0
CHANGELOG.md

@@ -1,4 +1,14 @@
 # ChangeLog - Aliyun OSS SDK for Go
+## 版本号:1.9.3 日期:2019-01-10
+### 变更内容
+- 修复:分片上传时传入partSize值不对是的提示信息不准确的问题
+- 修复:仅仅在使用userAgent的时候初始化它的值
+- 变更:添加ContentLanguage选项
+- 变更:支持设置最大的空闲连接个数
+- 变更:当配置的endpoint不对时,输出的错误信息将会打印出正确的endpoint
+- 变更:支持ServerSideEncryptionKeyID选项,允许用户传入kms-id
+- 变更:添加日志模块,支持设置日志级别
+
 ## 版本号:1.9.2 日期:2018-11-16
 ### 变更内容
 - 变更:添加支持设置request Payer的option

+ 3 - 2
README-CN.md

@@ -13,7 +13,7 @@
 > - 使用此SDK,用户可以方便地在任何应用、任何时间、任何地点上传,下载和管理数据。
 
 ## 版本
-> - 当前版本:1.9.2
+> - 当前版本:1.9.3
 
 ## 运行环境
 > - Go 1.5及以上。
@@ -161,7 +161,8 @@
 > - 阿里云官方技术支持:[提交工单](https://workorder.console.aliyun.com/#/ticket/createIndex)
 
 ## 作者
-> - Yubin Bai
+> - [Yubin Bai](https://github.com/baiyubin)
+> - [Guozhong Han](https://github.com/hangzws)
 
 ## License
 > - Apache License 2.0

+ 3 - 2
README.md

@@ -13,7 +13,7 @@
 > - With this SDK, you can upload, download and manage data on any app anytime and anywhere conveniently. 
 
 ## Version
-> - Current version: 1.9.2.
+> - Current version: 1.9.3.
 
 ## Running Environment
 > - Go 1.5 or above. 
@@ -160,7 +160,8 @@ and copy the sample directory and sample.go to the src directory of your test pr
 > - Alibaba Cloud official technical support: [Submit a ticket](https://workorder.console.aliyun.com/#/ticket/createIndex). 
 
 ## Author
-> - Yubin Bai.
+> - [Yubin Bai](https://github.com/baiyubin)
+> - [Guozhong Han](https://github.com/hangzws)
 
 ## License
 > - Apache License 2.0.

+ 1 - 1
oss/const.go

@@ -141,5 +141,5 @@ const (
 
 	CheckpointFileSuffix = ".cp" // Checkpoint file suffix
 
-	Version = "1.9.2" // Go SDK version
+	Version = "1.9.3" // Go SDK version
 )