From 270c58ca1bd6fa1abc165df71db6487208a45473 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 27 Nov 2024 17:35:01 +0100 Subject: [PATCH] version: bump to version v0.5.0-alpha.rc1 --- version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.go b/version.go index 378d1adf2..bf36b4c48 100644 --- a/version.go +++ b/version.go @@ -42,17 +42,17 @@ const ( AppMajor uint = 0 // AppMinor defines the minor version of this binary. - AppMinor uint = 4 + AppMinor uint = 5 // AppPatch defines the application patch for this binary. - AppPatch uint = 1 + AppPatch uint = 0 // AppStatus defines the release status of this binary (e.g. beta). AppStatus = "alpha" // AppPreRelease defines the pre-release version of this binary. // It MUST only contain characters from the semantic versioning spec. - AppPreRelease = "" + AppPreRelease = "rc1" // GitTagIncludeStatus indicates whether the status should be included // in the git tag name.