From 344fefc6f06303c9705ce1a3ba2fb920eab70da5 Mon Sep 17 00:00:00 2001 From: Henrik Christensen Date: Sun, 17 Jul 2022 01:11:47 +0200 Subject: [PATCH] updated version --- cmd/version.go | 2 +- cmd/version_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/version.go b/cmd/version.go index 7b38515..5414eaa 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -29,7 +29,7 @@ func NewVersionCmd() *cobra.Command { Use: "version", Short: "Print the version of bookmark", Run: func(cmd *cobra.Command, args []string) { - fmt.Println("v1.0.2") + fmt.Println("v1.0.3") }, } } diff --git a/cmd/version_test.go b/cmd/version_test.go index f006e69..ab4342e 100644 --- a/cmd/version_test.go +++ b/cmd/version_test.go @@ -33,5 +33,5 @@ func ExampleNewVersionCmd() { root.Execute() // Output: - // v1.0.2 + // v1.0.3 }