1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00
focalboard/server/model/version.go

29 lines
477 B
Go
Raw Normal View History

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