1package version
2
3// Info contains versioning information. how we'll want to
4// distribute that information.
5#Info: {
6 "buildDate"!: string
7 "compiler"!: string
8
9 // EmulationMajor is the major version of the emulation version
10 "emulationMajor"?: string
11
12 // EmulationMinor is the minor version of the emulation version
13 "emulationMinor"?: string
14 "gitCommit"!: string
15 "gitTreeState"!: string
16 "gitVersion"!: string
17 "goVersion"!: string
18
19 // Major is the major version of the binary version
20 "major"!: string
21
22 // MinCompatibilityMajor is the major version of the minimum
23 // compatibility version
24 "minCompatibilityMajor"?: string
25
26 // MinCompatibilityMinor is the minor version of the minimum
27 // compatibility version
28 "minCompatibilityMinor"?: string
29
30 // Minor is the minor version of the binary version
31 "minor"!: string
32 "platform"!: string
33}