7 lines
262 B
Go
7 lines
262 B
Go
package main
|
|
|
|
// Version is a var, not a const, so build.sh can put the built number in via
|
|
// -ldflags "-X main.Version=…". The value here only ever shows up in a bare
|
|
// `go build`; the version actually built is the one in version.txt.
|
|
var Version = "1.1.2"
|