Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version: bump to version v0.5.0-alpha.rc1 #1221

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down