Skip to content

Commit

Permalink
app/version: bump version to v1.2-dev (#3210)
Browse files Browse the repository at this point in the history
Bump version to v1.2-dev.

category: misc
ticket: none
  • Loading branch information
KaloyanTanev authored Aug 1, 2024
1 parent 101b07d commit 4c5f76f
Showing 1 changed file with 2 additions and 1 deletion.
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.1-dev"
var version = "v1.2-dev"

// Version is the branch version of the codebase.
// - Main branch: v0.X-dev
Expand All @@ -25,6 +25,7 @@ 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: 2},
{major: 1, minor: 1},
{major: 1, minor: 0},
}
Expand Down

0 comments on commit 4c5f76f

Please sign in to comment.