bump version to

Signed-off-by: Matt Farina <matt.farina@suse.com>
This commit is contained in:
Matt Farina 2024-01-09 13:18:32 -05:00
parent 27921d062f
commit 69dcc92c56
No known key found for this signature in database
GPG key ID: 92C44A3D421FF7F9
7 changed files with 8 additions and 8 deletions

View file

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

View file

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

View file

@ -1 +1 @@
v3.13
v3.14

View file

@ -1 +1 @@
Version: v3.13
Version: v3.14

View file

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