diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-10-21 12:32:16 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-10-21 12:32:16 +0200 |
commit | 7fce1bcf92005dddcd454616a06129b899826019 (patch) | |
tree | 8f6e467c75b9437f7666581352b94a28cd791a1b | |
parent | 6ce462c58a4037dfd33b541cc24333216758c86a (diff) | |
download | Nim-7fce1bcf92005dddcd454616a06129b899826019.tar.gz |
version bump
-rw-r--r-- | compiler.nimble | 2 | ||||
-rw-r--r-- | lib/stdlib.nimble | 2 | ||||
-rw-r--r-- | lib/system.nim | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/compiler.nimble b/compiler.nimble index 66d2ee7c2..cb3eb34f6 100644 --- a/compiler.nimble +++ b/compiler.nimble @@ -1,6 +1,6 @@ [Package] name = "compiler" -version = "0.15.1" +version = "0.15.2" author = "Andreas Rumpf" description = "Compiler package providing the compiler sources as a library." license = "MIT" diff --git a/lib/stdlib.nimble b/lib/stdlib.nimble index bd1b78efe..5238d900b 100644 --- a/lib/stdlib.nimble +++ b/lib/stdlib.nimble @@ -1,6 +1,6 @@ [Package] name = "stdlib" -version = "0.15.1" +version = "0.15.2" author = "Dominik Picheta" description = "Nim's standard library." license = "MIT" diff --git a/lib/system.nim b/lib/system.nim index 3e3f56e31..919b4694c 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1827,7 +1827,7 @@ const NimMinor*: int = 15 ## is the minor number of Nim's version. - NimPatch*: int = 1 + NimPatch*: int = 2 ## is the patch number of Nim's version. NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch |