Skip to content

Commit c490b93

Browse files
committed
update version info for future release
1 parent afaffed commit c490b93

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.1.46 (2023-12-28)
2+
3+
* update ucloud go sdk version
4+
5+
## 0.1.45 (2023-12-18)
6+
7+
* fix reinstall password encoding
8+
19
## 0.1.44 (2023-08-15)
210

311
* fix failing to specify release-eip and delete-cloud-disk to false

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export VERSION=0.1.44
1+
export VERSION=0.1.46
22
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
33

44
.PHONY : install

base/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const DefaultBaseURL = "https://api.ucloud.cn/"
3939
const DefaultProfile = "default"
4040

4141
// Version 版本号
42-
const Version = "0.1.44"
42+
const Version = "0.1.46"
4343

4444
var UserAgent = fmt.Sprintf("UCloud-CLI/%s", Version)
4545

cmd/pathx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ func NewCmdUGA3Create(out io.Writer) *cobra.Command {
174174
bindRegion(createPathxReq, flags)
175175
bindZone(createPathxReq, flags)
176176

177-
createPathxReq.Bandwidth = flags.Int("bandwidth", 0,
177+
createPathxReq.Bandwidth = flags.String("bandwidth", "0",
178178
"Required. Shared bandwidth of the resource")
179179
flags.String("area-code", "",
180180
"Optional. When it is empty,the nearest zone will be selected based on the origin-domain and origin-ip. "+

0 commit comments

Comments
 (0)