diff --git a/VERSION b/VERSION index 5c5cbb3..021abec 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.8 \ No newline at end of file +0.8.9 \ No newline at end of file diff --git a/cmd/kcl/commands/plugin.go b/cmd/kcl/commands/plugin.go index 872a58c..75a3bdc 100644 --- a/cmd/kcl/commands/plugin.go +++ b/cmd/kcl/commands/plugin.go @@ -57,7 +57,7 @@ func bootstrapCmdPlugin(cmd *cobra.Command, pluginHandler plugin.PluginHandler) } switch cmdName { // Don't search for a plugin - case "help", cobra.ShellCompRequestCmd, cobra.ShellCompNoDescRequestCmd: + case "help", "completion", cobra.ShellCompRequestCmd, cobra.ShellCompNoDescRequestCmd: default: if !builtinSubCmdExist { if err := plugin.HandlePluginCommand(pluginHandler, cmdPathPieces, false); err != nil { diff --git a/pkg/version/version.go b/pkg/version/version.go index 4261489..f0d9771 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_8 + VersionTypeLatest = Version_0_8_9 + Version_0_8_9 VersionType = "0.8.9" Version_0_8_8 VersionType = "0.8.8" Version_0_8_7 VersionType = "0.8.7" Version_0_8_6 VersionType = "0.8.6"