From c7126e786bd224939d418db6e7d26a660e25bd8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Omar=20Vergara=20P=C3=A9rez?= Date: Thu, 6 Jun 2024 07:44:00 -0600 Subject: [PATCH] build(version): bump version v0.24.0 (#203) --- 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 96b2739..91520ab 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.23.0") + fmt.Fprintln(cmd.OutOrStdout(), "v0.24.0") return nil }, } diff --git a/cmd/version_test.go b/cmd/version_test.go index 3de9207..69072aa 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.23.0") { - t.Fatalf("expected \"%s\" got \"%s\"", "v0.23.0", string(out)) + if !strings.Contains(string(out), "v0.24.0") { + t.Fatalf("expected \"%s\" got \"%s\"", "v0.24.0", string(out)) } }