mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-21 11:10:38 +00:00
Prepare stable release
This commit is contained in:
parent
9350c863dd
commit
2e36a257b1
@ -31,22 +31,26 @@ var (
|
||||
|
||||
// see https://calver.org
|
||||
const (
|
||||
VersionMajor = 2 // Major version component of the current release
|
||||
VersionMinor = 57 // Minor version component of the current release
|
||||
VersionMicro = 3 // Patch version component of the current release
|
||||
VersionModifier = "" // Modifier component of the current release
|
||||
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
|
||||
VersionKeyCreated = "ErigonVersionCreated"
|
||||
VersionKeyFinished = "ErigonVersionFinished"
|
||||
)
|
||||
|
||||
// Version holds the textual version string.
|
||||
var Version = func() string {
|
||||
return fmt.Sprintf("%d.%02d.%d", VersionMajor, VersionMinor, VersionMicro)
|
||||
return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionMicro)
|
||||
}()
|
||||
|
||||
// VersionWithMeta holds the textual version string including the metadata.
|
||||
var VersionWithMeta = func() string {
|
||||
v := Version
|
||||
if VariantMeta != "" {
|
||||
v += "-" + VariantMeta
|
||||
}
|
||||
if VersionModifier != "" {
|
||||
v += "-" + VersionModifier
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user