(maint) 2.22.0 release prep (#3447)

Co-authored-by: dependabot-ci <no-reply@github.com>
pull/3459/head v2.22.0
TP Honey 2024-01-02 15:34:39 +00:00 committed by GitHub
parent 3c37646f3a
commit af44f639fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 = 2
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 21
VersionMinor int64 = 22
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 0
// VersionPre indicates prerelease.

View File

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