From 98de3aa4a39113263cfb79a0e041aed6f30b6120 Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Sat, 26 Feb 2022 18:04:05 +0100 Subject: [PATCH 1/2] version v0.12.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 f39a3ddcff..82290e5c05 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -54,7 +54,7 @@ const VersionCore = "0.12.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 d30ace22baef497ca200d1a377108b155cb447e5 Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Sat, 26 Feb 2022 18:05:28 +0100 Subject: [PATCH 2/2] version v0.13.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 82290e5c05..2e8a40fcff 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.12.0" +const VersionCore = "0.13.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.