diff options
Diffstat (limited to 'cmd/version.go')
-rw-r--r-- | cmd/version.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/version.go b/cmd/version.go index 3a1e3c6..9f848f1 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -20,18 +20,18 @@ package cmd import ( "fmt" - "runtime" "github.com/spf13/cobra" + "runtime" ) -const version string = "v1.16.0" +const version string = "v1.17.1" -var versionCmd = &cobra.Command { +var versionCmd = &cobra.Command{ Use: "version", Short: "Shows current version", - Long: "Shows current version of macli", + Long: "Shows current version of macli", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("macli version", version, runtime.GOOS + "/" + runtime.GOARCH) + fmt.Println("macli version", version, runtime.GOOS+"/"+runtime.GOARCH) }, } |