diff --git a/CHANGELOG.md b/CHANGELOG.md index ae8a6e2a7c..7da0642ab8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.0 (2024-06-12) + +* ssh key pair and security group support for creating uhost + ## 0.1.49 (2024-05-09) * fix cli version config diff --git a/Makefile b/Makefile index c0fd5cfa67..32ed3a3856 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -export VERSION=0.1.49 +export VERSION=0.2.0 GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor) .PHONY : install diff --git a/base/config.go b/base/config.go index 430f43b92a..f94042e325 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.49" +const Version = "0.2.0" var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)