version: bump version to v0.14.1-alpha.rc1

This commit is contained in:
Oliver Gugger 2025-01-22 18:05:21 +01:00
parent 90d6bdf7e3
commit db23a1b691
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -23,11 +23,11 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
appMajor uint = 0
appMinor uint = 14
appPatch uint = 0
appPatch uint = 1
// 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