Skip to content

Commit 8d8a425

Browse files
authored
app: bump to v1.5-rc (#3791)
As per the title. category: misc ticket: none
1 parent 7a2971e commit 8d8a425

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/version/version.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
// version a string since it is overwritten at build-time with the git tag for official releases.
18-
var version = "v1.4-dev"
18+
var version = "v1.5-rc"
1919

2020
// Version is the branch version of the codebase.
2121
// - Main branch: v0.X-dev
@@ -25,6 +25,7 @@ var Version, _ = Parse(version) // Error is caught in tests.
2525
// Supported returns the supported minor versions in order of precedence.
2626
func Supported() []SemVer {
2727
return []SemVer{
28+
{major: 1, minor: 5},
2829
{major: 1, minor: 4},
2930
{major: 1, minor: 3},
3031
{major: 1, minor: 2},

0 commit comments

Comments
 (0)