focalboard/server/model/version.go

28 lines
474 B
Go
Raw Permalink Normal View History

2021-01-19 14:10:14 -08:00
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{
2021-07-09 09:36:57 -07:00
"0.8.0",
"0.7.3",
"0.7.2",
"0.7.1",
"0.7.0",
2021-05-10 12:22:42 -07:00
"0.6.7",
2021-04-21 12:56:14 -07:00
"0.6.6",
2021-04-13 11:04:22 -07:00
"0.6.5",
2021-03-31 11:59:07 -07:00
"0.6.2",
2021-03-19 09:59:46 -07:00
"0.6.1",
2021-03-08 09:36:14 -08:00
"0.6.0",
2021-02-02 14:34:10 -08:00
"0.5.0",
2021-01-19 14:10:14 -08:00
}
2021-03-21 16:28:26 +08:00
var (
CurrentVersion string = versions[0]
BuildNumber string
BuildDate string
BuildHash string
Edition string
)