Skip to content

Commit

Permalink
Bump app/version (#3566)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaloyanTanev authored Feb 27, 2025
1 parent 8e41fb4 commit d3144c5
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.2-dev"
var version = "v1.3-rc"

// 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: 3},
{major: 1, minor: 2},
{major: 1, minor: 1},
{major: 1, minor: 0},
Expand Down

0 comments on commit d3144c5

Please sign in to comment.