mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
bump version to v3.18.0
(cherry picked from commit 74c3d1dc0de0335f941362c80447871e7d6bc78e) Signed-off-by: Robert Sirchia <rsirchia@outlook.com>
This commit is contained in:
parent
aa7cdae3af
commit
94044595c7
7 changed files with 8 additions and 8 deletions
|
|
@ -1 +1 @@
|
|||
version.BuildInfo{Version:"v3.17", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||
version.BuildInfo{Version:"v3.18", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||
|
|
|
|||
2
cmd/helm/testdata/output/version-client.txt
vendored
2
cmd/helm/testdata/output/version-client.txt
vendored
|
|
@ -1 +1 @@
|
|||
version.BuildInfo{Version:"v3.17", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||
version.BuildInfo{Version:"v3.18", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||
|
|
|
|||
2
cmd/helm/testdata/output/version-short.txt
vendored
2
cmd/helm/testdata/output/version-short.txt
vendored
|
|
@ -1 +1 @@
|
|||
v3.17
|
||||
v3.18
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Version: v3.17
|
||||
Version: v3.18
|
||||
2
cmd/helm/testdata/output/version.txt
vendored
2
cmd/helm/testdata/output/version.txt
vendored
|
|
@ -1 +1 @@
|
|||
version.BuildInfo{Version:"v3.17", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||
version.BuildInfo{Version:"v3.18", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||
|
|
|
|||
|
|
@ -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.17"
|
||||
version = "v3.18"
|
||||
|
||||
// metadata is extra build time data
|
||||
metadata = ""
|
||||
|
|
|
|||
|
|
@ -62,8 +62,8 @@ func TestDefaultCapabilities(t *testing.T) {
|
|||
func TestDefaultCapabilitiesHelmVersion(t *testing.T) {
|
||||
hv := DefaultCapabilities.HelmVersion
|
||||
|
||||
if hv.Version != "v3.17" {
|
||||
t.Errorf("Expected default HelmVersion to be v3.17, got %q", hv.Version)
|
||||
if hv.Version != "v3.18" {
|
||||
t.Errorf("Expected default HelmVersion to be v3.18, got %q", hv.Version)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue