bump version to 1.6.5 for release

This commit is contained in:
Brad Rydzewski 2020-01-29 08:50:39 -08:00
parent e05ebfbb52
commit ad6be2073b
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ var (
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 6
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 4
VersionPatch int64 = 5
// VersionPre indicates prerelease.
VersionPre = ""
// VersionDev indicates development branch. Releases will be empty string.

View file

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