diff options
author | Araq <rumpf_a@web.de> | 2017-01-29 00:31:51 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-01-29 00:32:25 +0100 |
commit | edd542fe6ba668374305cee53390c8b1ef78f87f (patch) | |
tree | 12cc107d30f8edb91b2228f79cd0b8eba2d8a2fc /lib | |
parent | 904654b9ecbc32c7a2ec945be95fec783e75db33 (diff) | |
download | Nim-edd542fe6ba668374305cee53390c8b1ef78f87f.tar.gz |
devel version has to be odd
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 86edccfe9..75014ff26 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1850,7 +1850,7 @@ const NimMinor*: int = 16 ## is the minor number of Nim's version. - NimPatch*: int = 0 + NimPatch*: int = 1 ## is the patch number of Nim's version. NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch |