github.com/MetalBlockchain/subnet-evm@v0.4.9/params/version.go (about) 1 // (c) 2019-2020, Ava Labs, Inc. 2 // 3 // This file is a derived work, based on the go-ethereum library whose original 4 // notices appear below. 5 // 6 // It is distributed under a license compatible with the licensing terms of the 7 // original code from which it is derived. 8 // 9 // Much love to the original authors for their work. 10 // ********** 11 // Copyright 2016 The go-ethereum Authors 12 // This file is part of the go-ethereum library. 13 // 14 // The go-ethereum library is free software: you can redistribute it and/or modify 15 // it under the terms of the GNU Lesser General Public License as published by 16 // the Free Software Foundation, either version 3 of the License, or 17 // (at your option) any later version. 18 // 19 // The go-ethereum library is distributed in the hope that it will be useful, 20 // but WITHOUT ANY WARRANTY; without even the implied warranty of 21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 // GNU Lesser General Public License for more details. 23 // 24 // You should have received a copy of the GNU Lesser General Public License 25 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 26 27 package params 28 29 import ( 30 "fmt" 31 ) 32 33 const ( 34 VersionMajor = 1 // Major version component of the current release 35 VersionMinor = 10 // Minor version component of the current release 36 VersionPatch = 26 // Patch version component of the current release 37 VersionMeta = "stable" // Version metadata to append to the version string 38 ) 39 40 // Version holds the textual version string. 41 var Version = func() string { 42 return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch) 43 }() 44 45 // VersionWithMeta holds the textual version string including the metadata. 46 var VersionWithMeta = func() string { 47 v := Version 48 if VersionMeta != "" { 49 v += "-" + VersionMeta 50 } 51 return v 52 }() 53 54 func VersionWithCommit(gitCommit, gitDate string) string { 55 vsn := VersionWithMeta 56 if len(gitCommit) >= 8 { 57 vsn += "-" + gitCommit[:8] 58 } 59 return vsn 60 }