2016-11-09 01:01:56 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
2017-04-14 08:29:00 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2016-09-05 11:08:41 +00:00
|
|
|
//
|
2017-04-14 08:29:00 +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-05 11:08:41 +00:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2017-04-14 08:29:00 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2016-09-05 11:08:41 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-04-14 08:29:00 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
2016-09-05 11:08:41 +00:00
|
|
|
//
|
2017-04-14 08:29:00 +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-05 11:08:41 +00:00
|
|
|
|
2016-11-25 15:55:06 +00:00
|
|
|
package params
|
2016-09-05 11:08:41 +00:00
|
|
|
|
2017-04-12 14:27:23 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
2021-09-16 10:24:38 +00:00
|
|
|
|
2021-09-15 13:44:22 +00:00
|
|
|
"github.com/ledgerwatch/erigon-lib/kv"
|
2017-04-12 14:27:23 +00:00
|
|
|
)
|
2016-09-05 11:08:41 +00:00
|
|
|
|
2021-06-11 08:34:37 +00:00
|
|
|
var (
|
|
|
|
// Following vars are injected through the build flags (see Makefile)
|
|
|
|
GitCommit string
|
|
|
|
GitBranch string
|
|
|
|
GitTag string
|
|
|
|
)
|
|
|
|
|
2020-07-27 12:18:26 +00:00
|
|
|
// see https://calver.org
|
2016-09-05 11:08:41 +00:00
|
|
|
const (
|
2024-02-19 19:27:16 +00:00
|
|
|
VersionMajor = 2 // Major version component of the current release
|
|
|
|
VersionMinor = 4 // Minor version component of the current release
|
|
|
|
VersionMicro = 0 // Patch version component of the current release
|
|
|
|
VersionModifier = "stable" // Modifier component of the current release
|
|
|
|
VariantMeta = "pulse" // Variant metadata to append to the version string
|
2021-09-15 13:44:22 +00:00
|
|
|
VersionKeyCreated = "ErigonVersionCreated"
|
|
|
|
VersionKeyFinished = "ErigonVersionFinished"
|
2016-09-05 11:08:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Version holds the textual version string.
|
|
|
|
var Version = func() string {
|
2024-02-19 19:27:16 +00:00
|
|
|
return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionMicro)
|
2018-07-30 08:56:40 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
// VersionWithMeta holds the textual version string including the metadata.
|
|
|
|
var VersionWithMeta = func() string {
|
|
|
|
v := Version
|
2024-02-19 19:27:16 +00:00
|
|
|
if VariantMeta != "" {
|
|
|
|
v += "-" + VariantMeta
|
|
|
|
}
|
2020-07-27 12:18:26 +00:00
|
|
|
if VersionModifier != "" {
|
|
|
|
v += "-" + VersionModifier
|
2016-09-05 11:08:41 +00:00
|
|
|
}
|
|
|
|
return v
|
|
|
|
}()
|
2017-04-12 14:27:23 +00:00
|
|
|
|
2023-02-13 05:17:01 +00:00
|
|
|
func VersionWithCommit(gitCommit string) string {
|
2018-07-30 08:56:40 +00:00
|
|
|
vsn := VersionWithMeta
|
2017-04-12 14:27:23 +00:00
|
|
|
if len(gitCommit) >= 8 {
|
|
|
|
vsn += "-" + gitCommit[:8]
|
|
|
|
}
|
|
|
|
return vsn
|
|
|
|
}
|
2021-09-15 13:44:22 +00:00
|
|
|
|
|
|
|
func SetErigonVersion(tx kv.RwTx, versionKey string) error {
|
|
|
|
versionKeyByte := []byte(versionKey)
|
|
|
|
hasVersion, err := tx.Has(kv.DatabaseInfo, versionKeyByte)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if hasVersion {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// Save version if it does not exist
|
|
|
|
if err := tx.Put(kv.DatabaseInfo, versionKeyByte, []byte(Version)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|