Skip to content

Commit 40a7e5a

Browse files
authored
build(version): bump version to v0.25.0 (#224)
1 parent 81e200c commit 40a7e5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/version.go

Lines changed: 1 addition & 1 deletion
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.24.1")
35+
fmt.Fprintln(cmd.OutOrStdout(), "v0.25.0")
3636
return nil
3737
},
3838
}

cmd/version_test.go

Lines changed: 2 additions & 2 deletions
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.24.1") {
25-
t.Fatalf("expected \"%s\" got \"%s\"", "v0.24.1", string(out))
24+
if !strings.Contains(string(out), "v0.25.0") {
25+
t.Fatalf("expected \"%s\" got \"%s\"", "v0.25.0", string(out))
2626
}
2727
}

0 commit comments

Comments
 (0)