From 9ca71ddefb37d9ec4b76a11f506b2128e3792e24 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Wed, 14 Feb 2024 15:26:19 -0800 Subject: [PATCH] version v0.23.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 d1e4b921b9..2f207a51f1 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -54,11 +54,11 @@ func DisplayVersion() string { } // versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0 -const versionCore = "0.22.0" +const versionCore = "0.23.0" // versionPreRelease is the base pre-release portion of the kind CLI version per // Semantic Versioning 2.0.0 -const versionPreRelease = "" +const versionPreRelease = "alpha" // gitCommitCount count the commits since the last release. // It is injected at build time.