bump version number to prep for 1.6 release

This commit is contained in:
Brad Rydzewski 2019-09-25 12:13:31 -07:00
parent 5414bb75f7
commit 2cbc843197
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ var (
// VersionMajor is for an API incompatible changes.
VersionMajor int64 = 1
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 5
VersionMinor int64 = 6
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64
// VersionPre indicates prerelease.

View file

@ -9,7 +9,7 @@ package version
import "testing"
func TestVersion(t *testing.T) {
if got, want := Version.String(), "1.5.0"; got != want {
if got, want := Version.String(), "1.6.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}