aboutsummaryrefslogtreecommitdiff
path: root/cmd/version.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2023-02-01 11:39:05 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2023-02-01 11:39:05 +0530
commit9534771936b88675c2bec251c3e0369853409380 (patch)
tree743b209108f5ddf28fc5680d77055f1838016be5 /cmd/version.go
parent747e4795424c6f9112f0e64bcb434df42b2ba8c5 (diff)
added vendored Client ID support
Diffstat (limited to 'cmd/version.go')
-rw-r--r--cmd/version.go10
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)
},
}