Skip to content

Commit

Permalink
v0.18-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
xenowits committed Jul 27, 2023
1 parent 11166d9 commit 47661db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,18 @@ import (
)

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

// Version is the branch version of the codebase.
// - Main branch: v0.X-dev
// - Release branch: v0.X-rc
// - Release branch: v0.Y-rc
var Version, _ = Parse(version) // Error is caught in tests.

// Supported returns the supported minor versions in order of precedence.
func Supported() []SemVer {
return []SemVer{
// Current minor version always goes first.
{major: 0, minor: 18},
{major: 0, minor: 17},
{major: 0, minor: 16},
}
Expand Down

0 comments on commit 47661db

Please sign in to comment.