version.go 2.0 KB
Newer Older
F
Felix Lange 已提交
1
// Copyright 2016 The go-ethereum Authors
F
Felix Lange 已提交
2
// This file is part of the go-ethereum library.
3
//
F
Felix Lange 已提交
4 5
// 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
6 7 8
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
F
Felix Lange 已提交
9
// The go-ethereum library is distributed in the hope that it will be useful,
10 11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
F
Felix Lange 已提交
12
// GNU Lesser General Public License for more details.
13
//
F
Felix Lange 已提交
14 15
// 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/>.
16

17
package params
18

19 20 21
import (
	"fmt"
)
22 23

const (
24 25
	VersionMajor = 1        // Major version component of the current release
	VersionMinor = 8        // Minor version component of the current release
26
	VersionPatch = 27       // Patch version component of the current release
27
	VersionMeta  = "stable" // Version metadata to append to the version string
28 29 30 31
)

// Version holds the textual version string.
var Version = func() string {
32 33 34 35 36 37
	return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
}()

// VersionWithMeta holds the textual version string including the metadata.
var VersionWithMeta = func() string {
	v := Version
38 39 40 41 42
	if VersionMeta != "" {
		v += "-" + VersionMeta
	}
	return v
}()
43

44 45 46 47
// 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 {
48
	vsn := Version
49 50 51 52 53 54 55 56 57 58 59
	if VersionMeta != "stable" {
		vsn += "-" + VersionMeta
	}
	if len(gitCommit) >= 8 {
		vsn += "-" + gitCommit[:8]
	}
	return vsn
}

func VersionWithCommit(gitCommit string) string {
	vsn := VersionWithMeta
60 61 62 63 64
	if len(gitCommit) >= 8 {
		vsn += "-" + gitCommit[:8]
	}
	return vsn
}