diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a249d997d..00f570b9ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.44 (2023-08-15) + +* fix failing to specify release-eip and delete-cloud-disk to false + ## 0.1.43 (2023-07-13) * skip no permission region when query all uhosts in all regions diff --git a/Makefile b/Makefile index 7abf19b246..55f16a19f5 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -export VERSION=0.1.43 +export VERSION=0.1.44 GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) .PHONY : install diff --git a/base/config.go b/base/config.go index 084c0089ba..8fa7f81f37 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.43" +const Version = "0.1.44" var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)