Skip to content

Commit

Permalink
update ucloud go sdk version (#78)
Browse files Browse the repository at this point in the history
* update ucloud-sdk-go version

* update version info for future release
  • Loading branch information
wangrzneu authored Dec 28, 2023
1 parent c38700e commit 1100659
Show file tree
Hide file tree
Showing 39 changed files with 3,266 additions and 884 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.1.46 (2023-12-28)

* update ucloud go sdk version

## 0.1.45 (2023-12-18)

* fix reinstall password encoding

## 0.1.44 (2023-08-15)

* fix failing to specify release-eip and delete-cloud-disk to false
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export VERSION=0.1.44
export VERSION=0.1.46
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)

.PHONY : install
Expand Down
2 changes: 1 addition & 1 deletion base/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const DefaultBaseURL = "https://api.ucloud.cn/"
const DefaultProfile = "default"

// Version 版本号
const Version = "0.1.44"
const Version = "0.1.46"

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

Expand Down
2 changes: 1 addition & 1 deletion cmd/pathx.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func NewCmdUGA3Create(out io.Writer) *cobra.Command {
bindRegion(createPathxReq, flags)
bindZone(createPathxReq, flags)

createPathxReq.Bandwidth = flags.Int("bandwidth", 0,
createPathxReq.Bandwidth = flags.String("bandwidth", "0",
"Required. Shared bandwidth of the resource")
flags.String("area-code", "",
"Optional. When it is empty,the nearest zone will be selected based on the origin-domain and origin-ip. "+
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/sirupsen/logrus v1.3.0
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.3
github.com/ucloud/ucloud-sdk-go v0.21.42
github.com/ucloud/ucloud-sdk-go v0.22.10
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/ucloud/ucloud-sdk-go v0.21.42 h1:WGFpTRrnAL6yEZVJsZxNH5kSMNQNCYBsB8pq159QRG4=
github.com/ucloud/ucloud-sdk-go v0.21.42/go.mod h1:dyLmFHmUfgb4RZKYQP9IArlvQ2pxzFthfhwxRzOEPIw=
github.com/ucloud/ucloud-sdk-go v0.22.10 h1:jelK2qhOY7XDjUywdMbfBhNATIW8RIbsqgEfBFm3RNk=
github.com/ucloud/ucloud-sdk-go v0.22.10/go.mod h1:dyLmFHmUfgb4RZKYQP9IArlvQ2pxzFthfhwxRzOEPIw=
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0=
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 7 additions & 9 deletions vendor/github.com/ucloud/ucloud-sdk-go/services/pathx/apis.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/github.com/ucloud/ucloud-sdk-go/services/pathx/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

95 changes: 58 additions & 37 deletions vendor/github.com/ucloud/ucloud-sdk-go/services/pathx/models.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1100659

Please sign in to comment.