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.

26 lines
450 B

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