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

build: bump version to v0.18.0-beta.rc1 #8701

Merged
merged 1 commit into from
Apr 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 build/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ const (
AppMajor uint = 0

// AppMinor defines the minor version of this binary.
AppMinor uint = 17
AppMinor uint = 18

// AppPatch defines the application patch for this binary.
AppPatch uint = 99
AppPatch uint = 00

// AppPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.
AppPreRelease = "beta"
AppPreRelease = "beta.rc1"
)

func init() {
Expand Down
Loading