version: bump to v0.15.0-alpha.rc1

This commit is contained in:
Oliver Gugger 2025-05-21 14:38:30 +02:00
parent 02f9160ba1
commit 2c1f688989
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -33,12 +33,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
// versioning 2.0.0 spec (http://semver.org/).
const (
appMajor uint = 0
appMinor uint = 14
appPatch uint = 1
appMinor uint = 15
appPatch uint = 0
// appPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.
appPreRelease = "alpha"
appPreRelease = "alpha.rc1"
)
// Version returns the application version as a properly formed string per the