Skip to content

Commit

Permalink
chore: bump kpm version from 0.3.6 to 0.3.7 (#207)
Browse files Browse the repository at this point in the history
* chore: bump kpm version from 0.3.6 to 0.3.7

Signed-off-by: zongz <[email protected]>

* chore: bump kcl-go version to 0.6.0

Signed-off-by: zongz <[email protected]>

---------

Signed-off-by: zongz <[email protected]>
  • Loading branch information
zong-zhe authored Oct 23, 2023
1 parent ea0ff83 commit f6f6493
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/sirupsen/logrus v1.9.0
github.com/urfave/cli/v2 v2.25.0
gotest.tools/v3 v3.4.0
kcl-lang.io/kcl-go v0.6.0-alpha.1
kcl-lang.io/kcl-go v0.6.0
)

require (
Expand Down Expand Up @@ -91,7 +91,7 @@ require (
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
kcl-lang.io/kcl-artifact-go v0.6.0-alpha.1 // indirect
kcl-lang.io/kcl-artifact-go v0.6.0 // indirect
)

require (
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -763,10 +763,10 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
kcl-lang.io/kcl-artifact-go v0.6.0-alpha.1 h1:RaRbhPGTGbG8s2w0qAh6J3V+TmwfMZtryxiyxVTvLKA=
kcl-lang.io/kcl-artifact-go v0.6.0-alpha.1/go.mod h1:c07mqi9Hu2UjPW7lYfHhAAWOlZiB7lo7Vkr4jL5ov/M=
kcl-lang.io/kcl-go v0.6.0-alpha.1 h1:BhMQ2GNRp9AccWxB2QydvZF6g6iVlPkkSSPa+RAdYx0=
kcl-lang.io/kcl-go v0.6.0-alpha.1/go.mod h1:tHMTzp0dtah8Hn6h6UfnwbrEv737+TKf0xjIJkUkuaU=
kcl-lang.io/kcl-artifact-go v0.6.0 h1:J/1FKzgGRqzFDkq0amBWxCdXXRMrtg5oT3IGtoo9sgU=
kcl-lang.io/kcl-artifact-go v0.6.0/go.mod h1:c07mqi9Hu2UjPW7lYfHhAAWOlZiB7lo7Vkr4jL5ov/M=
kcl-lang.io/kcl-go v0.6.0 h1:gmbTZ5VfLxL2I2lGnVG2Tpin750YMHTFQeINfj7jKBk=
kcl-lang.io/kcl-go v0.6.0/go.mod h1:1/xEscOhVGNabr9+rYC5peFDIjphbthYqk8UyHzaPRk=
oras.land/oras-go v1.2.3 h1:v8PJl+gEAntI1pJ/LCrDgsuk+1PKVavVEPsYIHFE5uY=
oras.land/oras-go v1.2.3/go.mod h1:M/uaPdYklze0Vf3AakfarnpoEckvw0ESbRdN8Z1vdJg=
oras.land/oras-go/v2 v2.3.0 h1:lqX1aXdN+DAmDTKjiDyvq85cIaI4RkIKp/PghWlAGIU=
Expand Down
5 changes: 3 additions & 2 deletions pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ func (kvt KpmVersionType) String() string {

// All the kpm versions.
const (
KpmAbiVersion KpmVersionType = KpmAbiVersion_0_3_6
KpmVersionType_latest = KpmAbiVersion_0_3_6
KpmAbiVersion KpmVersionType = KpmAbiVersion_0_3_7
KpmVersionType_latest = KpmAbiVersion_0_3_7

KpmAbiVersion_0_3_7 KpmVersionType = "0.3.7"
KpmAbiVersion_0_3_6 KpmVersionType = "0.3.6"
KpmAbiVersion_0_3_5 KpmVersionType = "0.3.5"
KpmAbiVersion_0_3_4 KpmVersionType = "0.3.4"
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ func TestGetVersionInStr(t *testing.T) {
}{
{
name: "test get version in string",
want: "0.3.6",
want: "0.3.7",
},
}
for _, tt := range tests {
Expand Down

0 comments on commit f6f6493

Please sign in to comment.