2019-03-18 03:54:08 +00:00
|
|
|
const
|
|
|
|
useRLPx* = not defined(withLibP2P)
|
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
const
|
|
|
|
versionMajor* = 0
|
2019-05-14 13:31:19 +00:00
|
|
|
versionMinor* = 2
|
|
|
|
versionBuild* = 0
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2019-05-14 13:31:19 +00:00
|
|
|
semanticVersion* = 1
|
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-03-05 22:54:08 +00:00
|
|
|
template versionAsStr*: string =
|
|
|
|
$versionMajor & "." & $versionMinor & "." & $versionBuild
|
|
|
|
|
2019-03-18 03:54:08 +00:00
|
|
|
proc fullVersionStr*: string =
|
|
|
|
versionAsStr & (if useRLPx: " rlpx" else: " libp2p")
|