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{
|
2022-01-06 20:26:35 +01:00
|
|
|
"0.14.0",
|
2021-12-01 23:55:47 +01:00
|
|
|
"0.12.0",
|
2021-11-23 01:15:03 +01:00
|
|
|
"0.11.0",
|
2021-10-22 22:59:05 +02:00
|
|
|
"0.10.0",
|
|
|
|
"0.9.4",
|
|
|
|
"0.9.3",
|
|
|
|
"0.9.2",
|
2021-09-17 21:56:47 +02:00
|
|
|
"0.9.1",
|
2021-08-06 19:37:28 +02:00
|
|
|
"0.9.0",
|
|
|
|
"0.8.2",
|
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 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 (
|
2021-07-14 15:36:18 +02:00
|
|
|
CurrentVersion = versions[0]
|
2021-03-21 09:28:26 +01:00
|
|
|
BuildNumber string
|
|
|
|
BuildDate string
|
|
|
|
BuildHash string
|
|
|
|
Edition string
|
|
|
|
)
|