bump version to v3.10.0

Signed-off-by: Matt Farina <matt.farina@suse.com>
(cherry picked from commit ce66412a72)
This commit is contained in:
Matt Farina
2022-09-12 15:25:50 -04:00
parent bed23120b0
commit cd809f9b19
7 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

@@ -1 +1 @@
v3.9
v3.10

View File

@@ -1 +1 @@
Version: v3.9
Version: v3.10

View File

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