Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to v3.15.0 #13013

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.14", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.15", 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.14", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.15", 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.14
v3.15
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.14
Version: v3.15
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.14", GitCommit:"", GitTreeState:"", GoVersion:""}
version.BuildInfo{Version:"v3.15", 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.14"
version = "v3.15"

// 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.14" {
t.Errorf("Expected default HelmVersion to be v3.14, got %q", hv.Version)
if hv.Version != "v3.15" {
t.Errorf("Expected default HelmVersion to be v3.15, got %q", hv.Version)
}
}

Expand Down