Skip to content

Commit

Permalink
Bump version (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
zsolt-marta-bitrise authored Sep 28, 2020
1 parent c17099b commit 4d242ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _tests/integration/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func Test_VersionOutput(t *testing.T) {
{
out, err := command.RunCommandAndReturnCombinedStdoutAndStderr(binPath(), "version")
require.NoError(t, err, out)
require.Equal(t, "0.12.3", out)
require.Equal(t, "0.13.0", out)
}

t.Log("Version --full")
Expand All @@ -23,7 +23,7 @@ func Test_VersionOutput(t *testing.T) {
require.NoError(t, err, out)

expectedOSVersion := fmt.Sprintf("%s (%s)", runtime.GOOS, runtime.GOARCH)
expectedVersionOut := fmt.Sprintf(`version: 0.12.3
expectedVersionOut := fmt.Sprintf(`version: 0.13.0
os: %s
go: %s
build_number:
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION ...
const VERSION = "0.12.3"
const VERSION = "0.13.0"

0 comments on commit 4d242ab

Please sign in to comment.