diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eeee6a37d..bcc12438b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.47 (2024-05-08) + +* support repeating generic api call + ## 0.1.46 (2023-12-28) * update ucloud go sdk version diff --git a/Makefile b/Makefile index 6cc13698a1..19ecd38f0e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -export VERSION=0.1.46 +export VERSION=0.1.47 GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) .PHONY : install diff --git a/base/config.go b/base/config.go index 8b8003462c..b28d4a4b87 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.46" +const Version = "0.1.47" var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)