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

app: bump to v1.4-dev #3565

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion app/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

// version a string since it is overwritten at build-time with the git tag for official releases.
var version = "v1.2-dev"
var version = "v1.4-dev"

// Version is the branch version of the codebase.
// - Main branch: v0.X-dev
Expand All @@ -25,6 +25,8 @@ var Version, _ = Parse(version) // Error is caught in tests.
// Supported returns the supported minor versions in order of precedence.
func Supported() []SemVer {
return []SemVer{
{major: 1, minor: 4},
{major: 1, minor: 3},
{major: 1, minor: 2},
{major: 1, minor: 1},
{major: 1, minor: 0},
Expand Down
Loading