focalboard/server/model/version.go
2021-04-21 12:56:14 -07:00

22 lines
414 B
Go

package model
// This is a list of all the current versions including any patches.
// It should be maintained in chronological order with most current
// release at the front of the list.
var versions = []string{
"0.6.6",
"0.6.5",
"0.6.2",
"0.6.1",
"0.6.0",
"0.5.0",
}
var (
CurrentVersion string = versions[0]
BuildNumber string
BuildDate string
BuildHash string
Edition string
)