diff --git a/CHANGELOG.md b/CHANGELOG.md index bcc12438b9..ae8a6e2a7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.49 (2024-05-09) + +* fix cli version config + +## 0.1.48 (2024-05-09) + +* update golang version to 1.19 + ## 0.1.47 (2024-05-08) * support repeating generic api call diff --git a/Makefile b/Makefile index 19ecd38f0e..c0fd5cfa67 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -export VERSION=0.1.47 +export VERSION=0.1.49 GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) .PHONY : install diff --git a/base/config.go b/base/config.go index b28d4a4b87..430f43b92a 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.47" +const Version = "0.1.49" var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)