From b6762dac8f514010fe66a50483cc5ff28bb5acb5 Mon Sep 17 00:00:00 2001 From: Amit Watve Date: Mon, 17 May 2021 22:11:46 -0700 Subject: [PATCH 1/2] version v0.11.0 --- pkg/cmd/kind/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/kind/version/version.go b/pkg/cmd/kind/version/version.go index fc13595e66..372f75245e 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -54,7 +54,7 @@ const VersionCore = "0.11.0" // VersionPreRelease is the pre-release portion of the kind CLI version per // Semantic Versioning 2.0.0 -const VersionPreRelease = "alpha" +const VersionPreRelease = "" // GitCommit is the commit used to build the kind binary, if available. // It is injected at build time. From 448589b860ca93646b16bc14c95b5b9229e709db Mon Sep 17 00:00:00 2001 From: Amit Watve Date: Mon, 17 May 2021 22:12:22 -0700 Subject: [PATCH 2/2] version v0.12.0-alpha --- pkg/cmd/kind/version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/kind/version/version.go b/pkg/cmd/kind/version/version.go index 372f75245e..f39a3ddcff 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -50,11 +50,11 @@ func DisplayVersion() string { } // VersionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0 -const VersionCore = "0.11.0" +const VersionCore = "0.12.0" // VersionPreRelease is the pre-release portion of the kind CLI version per // Semantic Versioning 2.0.0 -const VersionPreRelease = "" +const VersionPreRelease = "alpha" // GitCommit is the commit used to build the kind binary, if available. // It is injected at build time.