From 65d429831a3ebaeac221c77013cb30e609dfd774 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Fri, 16 May 2025 17:35:39 -0500 Subject: [PATCH] version v0.29.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 9f11f4b6..6de82124 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -58,11 +58,11 @@ func DisplayVersion() string { } // versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0 -const versionCore = "0.28.0" +const versionCore = "0.29.0" // versionPreRelease is the base pre-release portion of the kind CLI version per // Semantic Versioning 2.0.0 -var versionPreRelease = "" +var versionPreRelease = "alpha" // gitCommitCount count the commits since the last release. // It is injected at build time.