File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ func NewVersionCmd() *cobra.Command {
32
32
Long : `The current version of the project.
33
33
This projects follows the semantic versioning standard.` ,
34
34
RunE : func (cmd * cobra.Command , args []string ) error {
35
- fmt .Fprintln (cmd .OutOrStdout (), "v0.24.1 " )
35
+ fmt .Fprintln (cmd .OutOrStdout (), "v0.25.0 " )
36
36
return nil
37
37
},
38
38
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ func TestVersionCmd(t *testing.T) {
21
21
t .Fatal (err )
22
22
}
23
23
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 ))
26
26
}
27
27
}
You can’t perform that action at this time.
0 commit comments