diff options
author | Araq <rumpf_a@web.de> | 2016-01-18 16:11:28 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2016-01-18 16:11:28 +0100 |
commit | 0ed29abca7e46e7bb11ee57f2e8aff5104bd097a (patch) | |
tree | e750aad85bea29c5ff0ac132a493ca48875c297b | |
parent | 1e11561572ec86c974f1b601b13fe13e79196ce4 (diff) | |
download | Nim-0ed29abca7e46e7bb11ee57f2e8aff5104bd097a.tar.gz |
updated version to 0.13.0
-rw-r--r-- | compiler.nimble | 2 | ||||
-rw-r--r-- | lib/stdlib.nimble | 2 | ||||
-rw-r--r-- | lib/system.nim | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/compiler.nimble b/compiler.nimble index cb0a08a3f..a98981a97 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 0805ead54..e8bb364f1 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 bb8254364..e884e784c 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 |