version.go 276 B

12345678910111213
  1. package version
  2. var (
  3. // VERSION should be updated by hand at each release
  4. VERSION = "0.3.0-dev"
  5. // GITCOMMIT will be overwritten automatically by the build system
  6. GITCOMMIT = "HEAD"
  7. // BUILDTIME will be overwritten automatically by the build system
  8. BUILDTIME = ""
  9. )