From 0ed29abca7e46e7bb11ee57f2e8aff5104bd097a Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 18 Jan 2016 16:11:28 +0100 Subject: [PATCH] updated version to 0.13.0 --- compiler.nimble | 2 +- lib/stdlib.nimble | 2 +- lib/system.nim | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler.nimble b/compiler.nimble index cb0a08a3fb..a98981a97c 100644 --- a/compiler.nimble +++ b/compiler.nimble @@ -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" diff --git a/lib/stdlib.nimble b/lib/stdlib.nimble index 0805ead548..e8bb364f16 100644 --- a/lib/stdlib.nimble +++ b/lib/stdlib.nimble @@ -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" diff --git a/lib/system.nim b/lib/system.nim index bb82543640..e884e784c6 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -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