diff --git a/cmd/version.go b/cmd/version.go index 838f030..223b873 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.12.0") + fmt.Fprintln(cmd.OutOrStdout(), "v0.15.1") return nil }, } diff --git a/cmd/version_test.go b/cmd/version_test.go index 807fc7c..a86da4f 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.12.0") { - t.Fatalf("expected \"%s\" got \"%s\"", "v0.12.0", string(out)) + if !strings.Contains(string(out), "v0.15.1") { + t.Fatalf("expected \"%s\" got \"%s\"", "v0.15.1", string(out)) } }