Skip to content

Commit

Permalink
version bump (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
trapacska authored May 17, 2021
1 parent 5c2296b commit 203f7a4
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.13.0", out)
require.Equal(t, "0.13.1", 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.13.0
expectedVersionOut := fmt.Sprintf(`version: 0.13.1
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.13.0"
const VERSION = "0.13.1"

0 comments on commit 203f7a4

Please sign in to comment.