From abec11012eaeda97aae1d57eee43d3165f3f4bb6 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 18 Jun 2026 15:45:55 -0700 Subject: [PATCH] version: bump to v0.26.0-beta for final release In this commit, we drop the rc1 pre-release suffix, taking the version from v0.26.0-beta.rc1 to v0.26.0-beta for the final release. --- version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.go b/version.go index 76b2cdfc..d63de6f6 100644 --- a/version.go +++ b/version.go @@ -22,7 +22,7 @@ const ( // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec. - appPreRelease = "beta.rc1" + appPreRelease = "beta" ) // appBuild is defined as a variable so it can be overridden during the build