diff --git a/VERSION b/VERSION index 8adc70f..c18d72b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.0 \ No newline at end of file +0.8.1 \ No newline at end of file diff --git a/cmd/kcl/commands/lint.go b/cmd/kcl/commands/lint.go index ef52cfb..0765dcf 100644 --- a/cmd/kcl/commands/lint.go +++ b/cmd/kcl/commands/lint.go @@ -30,7 +30,7 @@ func NewLintCmd() *cobra.Command { o := options.NewRunOptions() cmd := &cobra.Command{ Use: "lint", - Short: "Run KCL codes.", + Short: "Lint KCL codes.", Long: lintDesc, Example: lintExample, RunE: func(_ *cobra.Command, args []string) error { diff --git a/cmd/kcl/commands/play.go b/cmd/kcl/commands/play.go index f9d031d..b5b579a 100644 --- a/cmd/kcl/commands/play.go +++ b/cmd/kcl/commands/play.go @@ -21,8 +21,7 @@ const ( kcl play --addr 127.0.0.1:80 --open # Only listen the address and do not open the the browser. - kcl play - ` + kcl play` ) var ( diff --git a/pkg/version/version.go b/pkg/version/version.go index d85d02e..b6ac0cc 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -32,8 +32,9 @@ func getVersion(version string) string { } const ( - VersionTypeLatest = Version_0_8_0 + VersionTypeLatest = Version_0_8_1 + Version_0_8_1 VersionType = "0.8.1" Version_0_8_0 VersionType = "0.8.0" Version_0_8_0_beta_1 VersionType = "0.8.0-beta.1" Version_0_8_0_alpha_1 VersionType = "0.8.0-alpha.1"