Skip to content
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
3 changes: 2 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.9-dev"
var version = "v1.10-dev"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might become 2.0 actually

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd say let's keep it as such for now


// Version is the branch version of the codebase.
// - Main branch: v0.X-dev
Expand All @@ -35,6 +35,7 @@ const (
// Supported returns the supported minor versions in order of precedence.
func Supported() []SemVer {
return []SemVer{
{major: 1, minor: 10},
{major: 1, minor: 9},
{major: 1, minor: 8},
{major: 1, minor: 7},
Expand Down
Loading