diff options
author | Araq <rumpf_a@web.de> | 2016-06-08 19:59:07 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2016-06-08 19:59:07 +0200 |
commit | 9277dcb4d302dfc5a03522f2b4c27a1ac5232c38 (patch) | |
tree | 0d08d50f8ee8796ff25658d6f61e14acc7ed9144 /lib | |
parent | fb0df95015959f3174bde4001739ed98239cfc75 (diff) | |
download | Nim-9277dcb4d302dfc5a03522f2b4c27a1ac5232c38.tar.gz |
version bump to 0.14.2
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stdlib.nimble | 2 | ||||
-rw-r--r-- | lib/system.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib.nimble b/lib/stdlib.nimble index aecaf95f4..e6485d619 100644 --- a/lib/stdlib.nimble +++ b/lib/stdlib.nimble @@ -1,6 +1,6 @@ [Package] name = "stdlib" -version = "0.14.0" +version = "0.14.2" author = "Dominik Picheta" description = "Nim's standard library." license = "MIT" diff --git a/lib/system.nim b/lib/system.nim index f4e2b236d..9cb4f1cdd 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1812,7 +1812,7 @@ const NimMinor*: int = 14 ## is the minor number of Nim's version. - NimPatch*: int = 0 + NimPatch*: int = 2 ## is the patch number of Nim's version. NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch |