bump version to prep for 1.2.2 minor release

This commit is contained in:
Brad Rydzewski 2019-07-29 14:06:46 -07:00
parent 27bc816a01
commit ce1ba91632
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 = 2
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 1
VersionPatch int64 = 2
// 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.2.1"; got != want {
if got, want := Version.String(), "1.2.2"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}