[v3] Bump to version v3.21 (#32103)
Some checks are pending
build-test / build (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
golangci-lint / golangci-lint (push) Waiting to run

Signed-off-by: George Jenkins <gvjenkins@gmail.com>
This commit is contained in:
George Jenkins 2026-05-06 10:38:27 -07:00 committed by GitHub
parent 4d4902c431
commit 3033a778b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 8 additions and 8 deletions

View file

@ -1 +1 @@
version.BuildInfo{Version:"v3.20", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.21", GitCommit:"", GitTreeState:"", GoVersion:""}

View file

@ -1 +1 @@
version.BuildInfo{Version:"v3.20", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.21", GitCommit:"", GitTreeState:"", GoVersion:""}

View file

@ -1 +1 @@
v3.20
v3.21

View file

@ -1 +1 @@
Version: v3.20
Version: v3.21

View file

@ -1 +1 @@
version.BuildInfo{Version:"v3.20", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.21", GitCommit:"", GitTreeState:"", GoVersion:""}

View file

@ -29,7 +29,7 @@ var (
//
// Increment major number for new feature additions and behavioral changes.
// Increment minor number for bug fixes and performance enhancements.
version = "v3.20"
version = "v3.21"
// metadata is extra build time data
metadata = ""

View file

@ -62,8 +62,8 @@ func TestDefaultCapabilities(t *testing.T) {
func TestDefaultCapabilitiesHelmVersion(t *testing.T) {
hv := DefaultCapabilities.HelmVersion
if hv.Version != "v3.20" {
t.Errorf("Expected default HelmVersion to be v3.20, got %q", hv.Version)
if hv.Version != "v3.21" {
t.Errorf("Expected default HelmVersion to be v3.21, got %q", hv.Version)
}
}