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.