2021-01-19 23:10:14 +01: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-03-19 17:59:46 +01:00
|
|
|
"0.6.1",
|
2021-03-08 18:36:14 +01:00
|
|
|
"0.6.0",
|
2021-02-02 23:34:10 +01:00
|
|
|
"0.5.0",
|
2021-01-19 23:10:14 +01:00
|
|
|
}
|
|
|
|
|
2021-03-21 09:28:26 +01:00
|
|
|
var (
|
|
|
|
CurrentVersion string = versions[0]
|
|
|
|
BuildNumber string
|
|
|
|
BuildDate string
|
|
|
|
BuildHash string
|
|
|
|
Edition string
|
|
|
|
)
|