From ae94e461b16e9eb1df04c9a746c77fb8ee5e36c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Omar=20Vergara=20P=C3=A9rez?= Date: Fri, 9 Sep 2022 11:50:23 -0500 Subject: [PATCH] build(version): bump version to v0.16.0 --- cmd/version.go | 2 +- cmd/version_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/version.go b/cmd/version.go index f473c81..44239ed 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -32,7 +32,7 @@ func NewVersionCmd() *cobra.Command { Long: `The current version of the project. This projects follows the semantic versioning standard.`, RunE: func(cmd *cobra.Command, args []string) error { - fmt.Fprintln(cmd.OutOrStdout(), "v0.16.0-rc1") + fmt.Fprintln(cmd.OutOrStdout(), "v0.16.0") return nil }, } diff --git a/cmd/version_test.go b/cmd/version_test.go index 54cdfb6..aebab21 100644 --- a/cmd/version_test.go +++ b/cmd/version_test.go @@ -21,7 +21,7 @@ func TestVersionCmd(t *testing.T) { t.Fatal(err) } - if !strings.Contains(string(out), "v0.16.0-rc1") { - t.Fatalf("expected \"%s\" got \"%s\"", "v0.16.0-rc1", string(out)) + if !strings.Contains(string(out), "v0.16.0") { + t.Fatalf("expected \"%s\" got \"%s\"", "v0.16.0", string(out)) } }