diff options
author | Araq <rumpf_a@web.de> | 2017-01-07 21:44:40 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-01-07 21:44:40 +0100 |
commit | fc636e2d12bf354cfb4e8f63b33802ae2fe4ed5f (patch) | |
tree | 5fd05aae078c2efe60163f873d3aa74f3ee12397 /lib | |
parent | e95c5c926cc4f97e45b8cbe6c4585722a610e60d (diff) | |
download | Nim-fc636e2d12bf354cfb4e8f63b33802ae2fe4ed5f.tar.gz |
updated to version 0.16.0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index 83dc20869..35d7a0b26 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1845,10 +1845,10 @@ const NimMajor*: int = 0 ## is the major number of Nim's version. - NimMinor*: int = 15 + NimMinor*: int = 16 ## is the minor number of Nim's version. - NimPatch*: int = 3 + NimPatch*: int = 0 ## is the patch number of Nim's version. NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch |