diff --git a/CHANGELOG.md b/CHANGELOG.md index c7c2d4c4d2..5a249d997d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.43 (2023-07-13) + +* skip no permission region when query all uhosts in all regions + +## 0.1.42 (2023-02-22) + +* add concurrent parameter for uhost creating to tune concurrent level + ## 0.1.41 (2022-11-30) * remove bandwith limit for unet and udpn product in cli diff --git a/Makefile b/Makefile index 5432e13535..7abf19b246 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -export VERSION=0.1.42 +export VERSION=0.1.43 GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) .PHONY : install diff --git a/base/config.go b/base/config.go index f722e16037..084c0089ba 100644 --- a/base/config.go +++ b/base/config.go @@ -39,7 +39,7 @@ const DefaultBaseURL = "https://api.ucloud.cn/" const DefaultProfile = "default" // Version 版本号 -const Version = "0.1.42" +const Version = "0.1.43" var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)