develop version is 0.15.1

This commit is contained in:
Araq
2016-10-08 10:53:38 +02:00
parent 91722b4aed
commit a28612d869
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
[Package]
name = "compiler"
version = "0.15.0"
version = "0.15.1"
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.0"
version = "0.15.1"
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 = 0
NimPatch*: int = 1
## is the patch number of Nim's version.
NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch