File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ require (
10
10
github.com/sirupsen/logrus v1.9.0
11
11
github.com/urfave/cli/v2 v2.25.0
12
12
gotest.tools/v3 v3.4.0
13
- kcl-lang.io/kcl-go v0.6.0-alpha.1
13
+ kcl-lang.io/kcl-go v0.6.0
14
14
)
15
15
16
16
require (
@@ -91,7 +91,7 @@ require (
91
91
google.golang.org/protobuf v1.28.1 // indirect
92
92
gopkg.in/warnings.v0 v0.1.2 // indirect
93
93
gopkg.in/yaml.v3 v3.0.1 // indirect
94
- kcl-lang.io/kcl-artifact-go v0.6.0-alpha.1 // indirect
94
+ kcl-lang.io/kcl-artifact-go v0.6.0 // indirect
95
95
)
96
96
97
97
require (
Original file line number Diff line number Diff line change @@ -763,10 +763,10 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
763
763
honnef.co/go/tools v0.0.1-2019.2.3 /go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg =
764
764
honnef.co/go/tools v0.0.1-2020.1.3 /go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k =
765
765
honnef.co/go/tools v0.0.1-2020.1.4 /go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k =
766
- kcl-lang.io/kcl-artifact-go v0.6.0-alpha.1 h1:RaRbhPGTGbG8s2w0qAh6J3V+TmwfMZtryxiyxVTvLKA =
767
- kcl-lang.io/kcl-artifact-go v0.6.0-alpha.1 /go.mod h1:c07mqi9Hu2UjPW7lYfHhAAWOlZiB7lo7Vkr4jL5ov/M =
768
- kcl-lang.io/kcl-go v0.6.0-alpha.1 h1:BhMQ2GNRp9AccWxB2QydvZF6g6iVlPkkSSPa+RAdYx0 =
769
- kcl-lang.io/kcl-go v0.6.0-alpha.1 /go.mod h1:tHMTzp0dtah8Hn6h6UfnwbrEv737+TKf0xjIJkUkuaU =
766
+ kcl-lang.io/kcl-artifact-go v0.6.0 h1:J/1FKzgGRqzFDkq0amBWxCdXXRMrtg5oT3IGtoo9sgU =
767
+ kcl-lang.io/kcl-artifact-go v0.6.0 /go.mod h1:c07mqi9Hu2UjPW7lYfHhAAWOlZiB7lo7Vkr4jL5ov/M =
768
+ kcl-lang.io/kcl-go v0.6.0 h1:gmbTZ5VfLxL2I2lGnVG2Tpin750YMHTFQeINfj7jKBk =
769
+ kcl-lang.io/kcl-go v0.6.0 /go.mod h1:1/xEscOhVGNabr9+rYC5peFDIjphbthYqk8UyHzaPRk =
770
770
oras.land/oras-go v1.2.3 h1:v8PJl+gEAntI1pJ/LCrDgsuk+1PKVavVEPsYIHFE5uY =
771
771
oras.land/oras-go v1.2.3 /go.mod h1:M/uaPdYklze0Vf3AakfarnpoEckvw0ESbRdN8Z1vdJg =
772
772
oras.land/oras-go/v2 v2.3.0 h1:lqX1aXdN+DAmDTKjiDyvq85cIaI4RkIKp/PghWlAGIU =
Original file line number Diff line number Diff line change @@ -24,9 +24,10 @@ func (kvt KpmVersionType) String() string {
24
24
25
25
// All the kpm versions.
26
26
const (
27
- KpmAbiVersion KpmVersionType = KpmAbiVersion_0_3_6
28
- KpmVersionType_latest = KpmAbiVersion_0_3_6
27
+ KpmAbiVersion KpmVersionType = KpmAbiVersion_0_3_7
28
+ KpmVersionType_latest = KpmAbiVersion_0_3_7
29
29
30
+ KpmAbiVersion_0_3_7 KpmVersionType = "0.3.7"
30
31
KpmAbiVersion_0_3_6 KpmVersionType = "0.3.6"
31
32
KpmAbiVersion_0_3_5 KpmVersionType = "0.3.5"
32
33
KpmAbiVersion_0_3_4 KpmVersionType = "0.3.4"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ func TestGetVersionInStr(t *testing.T) {
9
9
}{
10
10
{
11
11
name : "test get version in string" ,
12
- want : "0.3.6 " ,
12
+ want : "0.3.7 " ,
13
13
},
14
14
}
15
15
for _ , tt := range tests {
You can’t perform that action at this time.
0 commit comments