10 lines
191 B
Go
10 lines
191 B
Go
package version
|
|
|
|
var (
|
|
// Version should be updated by hand at each release
|
|
Version = "0.5.0-rc2"
|
|
|
|
// GitCommit will be overwritten automatically by the build system
|
|
GitCommit = "HEAD"
|
|
)
|