version.go 343 B

1234567891011
  1. // Copyright 2017 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package version
  5. // Version of the application (generated with "make build")
  6. var Version = "2.0.x-dev"
  7. // BuildDate is generated with "make build"
  8. var BuildDate = "undefined"