gitlab.com/aquachain/aquachain@v1.17.16-rc3.0.20221018032414-e3ddf1e1c055/params/version.go (about)

     1  // Copyright 2018 The aquachain Authors
     2  // This file is part of the aquachain library.
     3  //
     4  // The aquachain library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The aquachain library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the aquachain library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package params
    18  
    19  import (
    20  	"encoding/base64"
    21  	"fmt"
    22  )
    23  
    24  const (
    25  	VersionMajor = 1  // Major version component of the current release
    26  	VersionMinor = 7  // Minor version component of the current release
    27  	VersionPatch = 16 // Patch version component of the current release
    28  )
    29  
    30  var (
    31  	VersionMeta = "dev" // Version metadata to append to the version string
    32  )
    33  
    34  // Version holds the textual version string.
    35  var Version = func() string {
    36  	v := fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
    37  	if VersionMeta != "" {
    38  		v += "-" + VersionMeta
    39  	}
    40  	return v
    41  }()
    42  
    43  func VersionWithCommit(gitCommit string) string {
    44  	vsn := Version
    45  	if len(gitCommit) >= 6 {
    46  		vsn += "-" + gitCommit[:6]
    47  	}
    48  	return vsn
    49  }
    50  
    51  // set with -X linker flag
    52  var Buildtags string
    53  
    54  func BuildTags() string {
    55  	b, err := base64.StdEncoding.DecodeString(Buildtags)
    56  	if err != nil {
    57  		panic(err)
    58  	}
    59  	return string(b)
    60  }