2020-04-22 05:53:02 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2020-04-15 22:20:27 +00:00
|
|
|
when not defined(nimscript):
|
|
|
|
import times
|
|
|
|
let copyrights* = "Copyright (c) 2019-" & $(now().utc.year) & " Status Research & Development GmbH"
|
2019-11-11 14:43:12 +00:00
|
|
|
|
2020-04-15 22:20:27 +00:00
|
|
|
const
|
2019-03-05 22:54:08 +00:00
|
|
|
versionMajor* = 0
|
2019-08-05 00:00:49 +00:00
|
|
|
versionMinor* = 3
|
2019-05-14 13:31:19 +00:00
|
|
|
versionBuild* = 0
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2019-08-05 00:00:49 +00:00
|
|
|
semanticVersion* = 2
|
2019-04-08 12:46:12 +00:00
|
|
|
# Bump this up every time a breaking change is introduced
|
|
|
|
# Clients having different semantic versions won't be able
|
|
|
|
# to join the same testnets.
|
|
|
|
|
2019-10-23 10:44:31 +00:00
|
|
|
useInsecureFeatures* = defined(insecure)
|
2019-09-07 17:48:05 +00:00
|
|
|
|
2019-11-08 10:33:16 +00:00
|
|
|
gitRevision* = staticExec("git rev-parse --short HEAD")
|
|
|
|
|
2020-04-15 22:20:27 +00:00
|
|
|
nimBanner* = staticExec("nim --version")
|
|
|
|
|
2019-11-12 00:05:35 +00:00
|
|
|
versionAsStr* =
|
|
|
|
$versionMajor & "." & $versionMinor & "." & $versionBuild
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2019-11-12 00:05:35 +00:00
|
|
|
fullVersionStr* =
|
2020-03-22 20:54:47 +00:00
|
|
|
versionAsStr & " (" & gitRevision & ")"
|