Skip to content

Commit

Permalink
(maint) 2.21.0 release prep (#3438)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Wilson committed Dec 7, 2023
1 parent 0d41939 commit 9152121
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 = 20
VersionMinor int64 = 21
// 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.20.0"; got != want {
if got, want := Version.String(), "2.21.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 9152121

Please sign in to comment.