bump version to v3.19.0

Signed-off-by: Scott Rigby <scott@r6by.com>
(cherry picked from commit 3d8990f083)
This commit is contained in:
Scott Rigby 2025-09-04 23:48:47 -04:00
parent eab6c55646
commit c3610abd2d
No known key found for this signature in database
GPG key ID: C7C6FBB5B91C1155
7 changed files with 8 additions and 8 deletions

View file

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

View file

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

View file

@ -1 +1 @@
v3.18
v3.19

View file

@ -1 +1 @@
Version: v3.18
Version: v3.19

View file

@ -1 +1 @@
version.BuildInfo{Version:"v3.18", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.19", 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.18"
version = "v3.19"
// 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.18" {
t.Errorf("Expected default HelmVersion to be v3.18, got %q", hv.Version)
if hv.Version != "v3.19" {
t.Errorf("Expected default HelmVersion to be v3.19, got %q", hv.Version)
}
}