We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a2971e commit 8d8a425Copy full SHA for 8d8a425
app/version/version.go
@@ -15,7 +15,7 @@ import (
15
)
16
17
// version a string since it is overwritten at build-time with the git tag for official releases.
18
-var version = "v1.4-dev"
+var version = "v1.5-rc"
19
20
// Version is the branch version of the codebase.
21
// - Main branch: v0.X-dev
@@ -25,6 +25,7 @@ var Version, _ = Parse(version) // Error is caught in tests.
25
// Supported returns the supported minor versions in order of precedence.
26
func Supported() []SemVer {
27
return []SemVer{
28
+ {major: 1, minor: 5},
29
{major: 1, minor: 4},
30
{major: 1, minor: 3},
31
{major: 1, minor: 2},
0 commit comments