Skip to content

Commit

Permalink
build(version): bump to version v0.20.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
danvergara committed May 12, 2023
1 parent 994fb50 commit b993a60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/version.go
Expand Up @@ -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.19.0")
fmt.Fprintln(cmd.OutOrStdout(), "v0.20.0-rc1")
return nil
},
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/version_test.go
Expand Up @@ -21,7 +21,7 @@ func TestVersionCmd(t *testing.T) {
t.Fatal(err)
}

if !strings.Contains(string(out), "v0.19.0") {
t.Fatalf("expected \"%s\" got \"%s\"", "v0.19.0", string(out))
if !strings.Contains(string(out), "v0.20.0-rc1") {
t.Fatalf("expected \"%s\" got \"%s\"", "v0.20.0-rc1", string(out))
}
}

0 comments on commit b993a60

Please sign in to comment.