From bc520396154c0f0a87530f05b4aa51a8b2d1f060 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 25 Jun 2024 16:45:33 -0700 Subject: [PATCH] build: bump version to v0.4 rc1 --- version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.go b/version.go index e561bef62..ef9476b58 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 = 3 + AppMinor uint = 4 // AppPatch defines the application patch for this binary. - AppPatch uint = 2 + 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.