Skip to content

Commit

Permalink
mod: new release
Browse files Browse the repository at this point in the history
  • Loading branch information
KarolosLykos committed Sep 6, 2022
1 parent a66152e commit f5a44b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func NewVersionCmd() *cobra.Command {
Args: cobra.NoArgs,
SilenceUsage: true,
Run: func(cmd *cobra.Command, args []string) {
fmt.Fprintf(cmd.OutOrStdout(), "%s\n", "v0.0.1")
fmt.Fprintf(cmd.OutOrStdout(), "%s\n", "v0.0.3")
},
}
}
2 changes: 1 addition & 1 deletion cmd/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ func TestVersionCommand(t *testing.T) {
out, err := ioutil.ReadAll(b)
require.NoError(t, err)

assert.Equal(t, fmt.Sprintln(command.Version), string(out))
assert.Equal(t, fmt.Sprintln("v0.0.3"), string(out))
}

0 comments on commit f5a44b3

Please sign in to comment.