version bump

This commit is contained in:
Andreas Rumpf
2016-10-21 12:32:16 +02:00
parent 6ce462c58a
commit 7fce1bcf92
3 changed files with 3 additions and 3 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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