Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump kcl-go to v0.5.0-beta.2 #27

Merged
merged 1 commit into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/boltdb/bolt v1.3.1
github.com/gin-gonic/gin v1.7.7
kusionstack.io/kclvm-go v0.5.0-alpha.4
kcl-lang.io/kcl-go v0.5.0-beta.2
)

require (
Expand Down Expand Up @@ -37,5 +37,5 @@ require (
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
kusionstack.io/kclvm-artifact-go v0.5.0-alpha.4 // indirect
kcl-lang.io/kcl-artifact-go v0.5.0-beta.1 // indirect
)
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
kusionstack.io/kclvm-artifact-go v0.5.0-alpha.4 h1:4Oolpot/kDxI3zkm5Dzo3zAjjQdKq8ZWYvhmalBPCkA=
kusionstack.io/kclvm-artifact-go v0.5.0-alpha.4/go.mod h1:WI+NvDeMqu1AduJT119X7q8KQdYmKfv4Nq4OvZ1tAsI=
kusionstack.io/kclvm-go v0.5.0-alpha.4 h1:FdqZ1K9VplzObpbnmvHf0VD4D/bckdK5S4/8Xj7Ozvg=
kusionstack.io/kclvm-go v0.5.0-alpha.4/go.mod h1:9s9XXHTHDZ2SyFXjcap9jr7XpW1xoyhfJotSBQkF1M4=
kcl-lang.io/kcl-artifact-go v0.5.0-beta.1 h1:HGjgH3/+2okgzIxsUC8+yq0LhrUj2h7nk/nz6QKp6N4=
kcl-lang.io/kcl-artifact-go v0.5.0-beta.1/go.mod h1:c07mqi9Hu2UjPW7lYfHhAAWOlZiB7lo7Vkr4jL5ov/M=
kcl-lang.io/kcl-go v0.5.0-beta.2 h1:603hUZhXHvBkWWVnwyYYfjiKGndXNNudv8PquMRVFmA=
kcl-lang.io/kcl-go v0.5.0-beta.2/go.mod h1:PPTopxnrHjNCTSJZoH2R1NoO7E2wc2kzv7zeU6wnKNE=
2 changes: 1 addition & 1 deletion pkg/play/server_compile.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/acarl005/stripansi"
"github.com/gin-gonic/gin"

"kusionstack.io/kclvm-go"
"kcl-lang.io/kcl-go"
)

func (p *WebServer) initCompileHandler() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/play/server_edit.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/boltdb/bolt"
"github.com/gin-gonic/gin"
"kusionstack.io/kclvm-go"
"kcl-lang.io/kcl-go"
)

func (p *WebServer) initEditHandler() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/play/server_fmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/gin-gonic/gin"

"kusionstack.io/kclvm-go/pkg/tools/format"
"kcl-lang.io/kcl-go/pkg/tools/format"
)

func (p *WebServer) initFmtHandler() {
Expand Down