2016-11-25 05:50:30 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
2017-05-01 11:09:48 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2016-09-29 19:51:33 +00:00
|
|
|
//
|
2017-05-01 11:09:48 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
2016-09-29 19:51:33 +00:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2017-05-01 11:09:48 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2016-09-29 19:51:33 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-05-01 11:09:48 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
2016-09-29 19:51:33 +00:00
|
|
|
//
|
2017-05-01 11:09:48 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2016-09-29 19:51:33 +00:00
|
|
|
|
2016-12-07 20:54:59 +00:00
|
|
|
package params
|
2016-09-29 19:51:33 +00:00
|
|
|
|
2017-05-01 11:09:48 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
2016-09-29 19:51:33 +00:00
|
|
|
|
|
|
|
const (
|
2021-06-28 06:53:50 +00:00
|
|
|
VersionMajor = 1 // Major version component of the current release
|
|
|
|
VersionMinor = 10 // Minor version component of the current release
|
|
|
|
VersionPatch = 5 // Patch version component of the current release
|
|
|
|
VersionMeta = "unstable" // Version metadata to append to the version string
|
2016-09-29 19:51:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Version holds the textual version string.
|
|
|
|
var Version = func() string {
|
2018-08-07 13:31:06 +00:00
|
|
|
return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
|
|
|
|
}()
|
|
|
|
|
|
|
|
// VersionWithMeta holds the textual version string including the metadata.
|
|
|
|
var VersionWithMeta = func() string {
|
|
|
|
v := Version
|
2016-09-29 19:51:33 +00:00
|
|
|
if VersionMeta != "" {
|
|
|
|
v += "-" + VersionMeta
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}()
|
2017-05-01 11:09:48 +00:00
|
|
|
|
2018-08-07 13:31:06 +00:00
|
|
|
// ArchiveVersion holds the textual version string used for Geth archives.
|
|
|
|
// e.g. "1.8.11-dea1ce05" for stable releases, or
|
|
|
|
// "1.8.13-unstable-21c059b6" for unstable releases
|
|
|
|
func ArchiveVersion(gitCommit string) string {
|
2017-05-01 11:09:48 +00:00
|
|
|
vsn := Version
|
2018-08-07 13:31:06 +00:00
|
|
|
if VersionMeta != "stable" {
|
|
|
|
vsn += "-" + VersionMeta
|
|
|
|
}
|
|
|
|
if len(gitCommit) >= 8 {
|
|
|
|
vsn += "-" + gitCommit[:8]
|
|
|
|
}
|
|
|
|
return vsn
|
|
|
|
}
|
|
|
|
|
2019-10-04 15:21:24 +00:00
|
|
|
func VersionWithCommit(gitCommit, gitDate string) string {
|
2018-08-07 13:31:06 +00:00
|
|
|
vsn := VersionWithMeta
|
2017-05-01 11:09:48 +00:00
|
|
|
if len(gitCommit) >= 8 {
|
|
|
|
vsn += "-" + gitCommit[:8]
|
|
|
|
}
|
2019-10-04 15:21:24 +00:00
|
|
|
if (VersionMeta != "stable") && (gitDate != "") {
|
|
|
|
vsn += "-" + gitDate
|
|
|
|
}
|
2017-05-01 11:09:48 +00:00
|
|
|
return vsn
|
|
|
|
}
|