You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
353 B

  1. package version
  2. const Maj = "0"
  3. const Min = "14"
  4. const Fix = "0"
  5. var (
  6. // Version is the current version of Tendermint
  7. // Must be a string because scripts like dist.sh read this file.
  8. Version = "0.14.0"
  9. // GitCommit is the current HEAD set using ldflags.
  10. GitCommit string
  11. )
  12. func init() {
  13. if GitCommit != "" {
  14. Version += "-" + GitCommit
  15. }
  16. }