updated version to 0.13.0

This commit is contained in:
Araq
2016-01-18 16:11:28 +01:00
parent 1e11561572
commit 0ed29abca7
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
[Package]
name = "compiler"
version = "0.12.0"
version = "0.13.0"
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.9.0"
version = "0.13.0"
author = "Dominik Picheta"
description = "Nim's standard library."
license = "MIT"

View File

@@ -1808,10 +1808,10 @@ const
NimMajor*: int = 0
## is the major number of Nim's version.
NimMinor*: int = 12
NimMinor*: int = 13
## is the minor number of Nim's version.
NimPatch*: int = 1
NimPatch*: int = 0
## is the patch number of Nim's version.
NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch