We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 420b09d commit 4fe794fCopy full SHA for 4fe794f
3 files changed
CHANGELOG.md
@@ -1,3 +1,11 @@
1
+## 0.1.43 (2023-07-13)
2
+
3
+* skip no permission region when query all uhosts in all regions
4
5
+## 0.1.42 (2023-02-22)
6
7
+* add concurrent parameter for uhost creating to tune concurrent level
8
9
## 0.1.41 (2022-11-30)
10
11
* remove bandwith limit for unet and udpn product in cli
Makefile
@@ -1,4 +1,4 @@
-export VERSION=0.1.42
+export VERSION=0.1.43
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.42"
+const Version = "0.1.43"
43
44
var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)
45
0 commit comments