From 104a8e12b17377758c39648551985e4e5a8b743f Mon Sep 17 00:00:00 2001 From: Yaroslav Koisa Date: Sat, 4 Mar 2023 14:55:52 +0000 Subject: [PATCH] Updated `version` flag to present correct version --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 4b12e507..1954ea03 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -145,6 +145,6 @@ var versionCmd = &cobra.Command{ Use: "version", Short: "Print the version number of HosterCore", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("HosterCore v0.1, version based on Golang") + fmt.Println("HosterCore v0.1a, version based on Golang") }, }