From aee2705f701ae88a2de1035cd7bbec0debce602c Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Fri, 8 Mar 2024 17:58:53 -0800 Subject: [PATCH] build: bump version to v0.24.2-beta.rc1 --- version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.go b/version.go index 999dfd95b2..0fd06fde6c 100644 --- a/version.go +++ b/version.go @@ -18,11 +18,11 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 24 - appPatch uint = 1 + appPatch uint = 2 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec. - appPreRelease = "beta" + appPreRelease = "beta.rc1" ) // appBuild is defined as a variable so it can be overridden during the build