Skip to content

Commit

Permalink
Merge pull request #12701 from mattfarina/bump-version-3.14
Browse files Browse the repository at this point in the history
bump version to 3.14
  • Loading branch information
mattfarina committed May 8, 2024
2 parents cf823d4 + f4c37e7 commit 7b70fdf
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/helm/testdata/output/version-client-shorthand.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version.BuildInfo{Version:"v3.13", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.14", GitCommit:"", GitTreeState:"", GoVersion:""}
2 changes: 1 addition & 1 deletion cmd/helm/testdata/output/version-client.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version.BuildInfo{Version:"v3.13", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.14", GitCommit:"", GitTreeState:"", GoVersion:""}
2 changes: 1 addition & 1 deletion cmd/helm/testdata/output/version-short.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.13
v3.14
2 changes: 1 addition & 1 deletion cmd/helm/testdata/output/version-template.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version: v3.13
Version: v3.14
2 changes: 1 addition & 1 deletion cmd/helm/testdata/output/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version.BuildInfo{Version:"v3.13", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.14", GitCommit:"", GitTreeState:"", GoVersion:""}
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Expand Down
4 changes: 2 additions & 2 deletions pkg/chartutil/capabilities_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 7b70fdf

Please sign in to comment.