diff options
author | narimiran <narimiran@disroot.org> | 2019-11-03 16:04:21 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2019-11-03 16:04:21 +0100 |
commit | bdc2bcc36c2efc1994238d42fae3ceddef10a392 (patch) | |
tree | 8c02de7ba28925d01c2e62217450ffe5cc25878d /lib | |
parent | 3f4b9971fc098e05a75f0d830f2f04e1dc814668 (diff) | |
download | Nim-bdc2bcc36c2efc1994238d42fae3ceddef10a392.tar.gz |
NimPatch of devel version should be an odd number because of the earlier hacks
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 20687e4f1..333cfaf03 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -3586,7 +3586,7 @@ const NimMinor* {.intdefine.}: int = 1 ## is the minor number of Nim's version. - NimPatch* {.intdefine.}: int = 0 + NimPatch* {.intdefine.}: int = 1 ## is the patch number of Nim's version. NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch |