aboutsummaryrefslogtreecommitdiff
path: root/cmd/version.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-30 21:32:30 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-30 21:32:30 +0530
commit05f7943ee7267e305d40be8afc2e404421ee5742 (patch)
tree183c55a3511dd373f701f38affa2cc9b3699f051 /cmd/version.go
parent28b52bfddc5ad4802efdf82a75618e27eb1b3e36 (diff)
Bug fix: sometimes macli status command printing 'not in list' because of MAL API not sending list data with SearchAnime
Diffstat (limited to 'cmd/version.go')
-rw-r--r--cmd/version.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/version.go b/cmd/version.go
index 6baf737..cc40407 100644
--- a/cmd/version.go
+++ b/cmd/version.go
@@ -23,14 +23,14 @@ import (
"github.com/spf13/cobra"
)
-var version string = "v1.4.0"
+var version string = "v1.4.1"
var versionCmd = &cobra.Command {
Use: "version",
Short: "Shows current version",
Long: "Shows current version of macli",
Run: func(cmd *cobra.Command, args []string) {
- fmt.Println("macli ", version)
+ fmt.Println("macli", version)
},
}