From 2c1f6889894481dc3ada5da82004fb2f4ef451a0 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 21 May 2025 14:38:30 +0200 Subject: [PATCH] version: bump to v0.15.0-alpha.rc1 --- version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.go b/version.go index 082a1fc1..4a6748a1 100644 --- a/version.go +++ b/version.go @@ -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