build: bump version to v0.24.2-beta.rc1

This commit is contained in:
Olaoluwa Osuntokun 2024-03-08 17:58:53 -08:00
parent f0ec9fbcce
commit aee2705f70
No known key found for this signature in database
GPG Key ID: 3BBD59E99B280306

View File

@ -18,11 +18,11 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const ( const (
appMajor uint = 0 appMajor uint = 0
appMinor uint = 24 appMinor uint = 24
appPatch uint = 1 appPatch uint = 2
// appPreRelease MUST only contain characters from semanticAlphabet // appPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec. // per the semantic versioning spec.
appPreRelease = "beta" appPreRelease = "beta.rc1"
) )
// appBuild is defined as a variable so it can be overridden during the build // appBuild is defined as a variable so it can be overridden during the build