update version to 0.19

This commit is contained in:
Andreas Rumpf
2018-09-25 12:20:54 +02:00
parent b45483f862
commit c240806756

View File

@@ -1932,10 +1932,10 @@ const
NimMajor* {.intdefine.}: int = 0
## is the major number of Nim's version.
NimMinor* {.intdefine.}: int = 18
NimMinor* {.intdefine.}: int = 19
## is the minor number of Nim's version.
NimPatch* {.intdefine.}: int = 1
NimPatch* {.intdefine.}: int = 0
## is the patch number of Nim's version.
NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch