Skip to content

Commit df5c16b

Browse files
committed
build(version): bump version to v0.16.2-rc1
1 parent 4febf7c commit df5c16b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: cmd/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func NewVersionCmd() *cobra.Command {
3232
Long: `The current version of the project.
3333
This projects follows the semantic versioning standard.`,
3434
RunE: func(cmd *cobra.Command, args []string) error {
35-
fmt.Fprintln(cmd.OutOrStdout(), "v0.16.1")
35+
fmt.Fprintln(cmd.OutOrStdout(), "v0.16.2-rc1")
3636
return nil
3737
},
3838
}

Diff for: cmd/version_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func TestVersionCmd(t *testing.T) {
2121
t.Fatal(err)
2222
}
2323

24-
if !strings.Contains(string(out), "v0.16.1") {
25-
t.Fatalf("expected \"%s\" got \"%s\"", "v0.16.1", string(out))
24+
if !strings.Contains(string(out), "v0.16.2-rc1") {
25+
t.Fatalf("expected \"%s\" got \"%s\"", "v0.16.2-rc1", string(out))
2626
}
2727
}

0 commit comments

Comments
 (0)