Skip to content

Commit

Permalink
(maint) 2.22.0 release prep (#3447)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot-ci <no-reply@github.com>
  • Loading branch information
TP Honey and dependabot-ci committed Jan 2, 2024
1 parent 3c37646 commit af44f63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion version/version_test.go
Expand Up @@ -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)
}
}

0 comments on commit af44f63

Please sign in to comment.