10 lines
191 B
Go
10 lines
191 B
Go
package version
|
|
|
|
var (
|
|
// VERSION should be updated by hand at each release
|
|
VERSION = "0.3.0-rc3"
|
|
|
|
// GITCOMMIT will be overwritten automatically by the build system
|
|
GITCOMMIT = "HEAD"
|
|
)
|