bump version to v3.4.0

Signed-off-by: Matt Farina <matt@mattfarina.com>
(cherry picked from commit 7090a89efc)
This commit is contained in:
Matt Farina 2020-10-19 17:32:05 -04:00
parent 75b7aeaeeb
commit ce4fa95868
7 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

@ -1 +1 @@
v3.3
v3.4

View File

@ -1 +1 @@
Version: v3.3
Version: v3.4

View File

@ -1 +1 @@
version.BuildInfo{Version:"v3.3", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.4", 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.3"
version = "v3.4"
// metadata is extra build time data
metadata = ""

View File

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