nimbus-eth2/beacon_chain/version.nim

23 lines
571 B
Nim
Raw Normal View History

const
2019-11-11 14:43:12 +00:00
copyrights* = "Copyright (c) 2019 Status Research & Development GmbH"
versionMajor* = 0
versionMinor* = 3
versionBuild* = 0
semanticVersion* = 2
# Bump this up every time a breaking change is introduced
# Clients having different semantic versions won't be able
# to join the same testnets.
useInsecureFeatures* = defined(insecure)
gitRevision* = staticExec("git rev-parse --short HEAD")
versionAsStr* =
$versionMajor & "." & $versionMinor & "." & $versionBuild
fullVersionStr* =
versionAsStr & " (" & gitRevision & ")"