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