We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 943f2f3 commit 4dd4cd3Copy full SHA for 4dd4cd3
CHANGELOG.md
@@ -1,3 +1,11 @@
1
+## 0.1.49 (2024-05-09)
2
+
3
+* fix cli version config
4
5
+## 0.1.48 (2024-05-09)
6
7
+* update golang version to 1.19
8
9
## 0.1.47 (2024-05-08)
10
11
* support repeating generic api call
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
base/config.go
@@ -39,7 +39,7 @@ const DefaultBaseURL = "https://api.ucloud.cn/"
39
const DefaultProfile = "default"
40
41
// Version 版本号
42
-const Version = "0.1.47"
+const Version = "0.1.49"
43
44
var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)
45
0 commit comments