development version should be 1.1.0 so that version checking can work properly

This commit is contained in:
Andreas Rumpf
2019-10-25 21:29:39 +02:00
parent 0631d2dccc
commit 120829155a

View File

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