diff options
author | Araq <rumpf_a@web.de> | 2016-10-08 10:53:38 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2016-10-08 10:53:38 +0200 |
commit | a28612d869e41af804920b62d6fe5f78a69cce73 (patch) | |
tree | cc252f6538aae020ff3155fb2f04376e63589a74 | |
parent | 91722b4aed0194af9b7fb3b2241a23e8a613f7fa (diff) | |
download | Nim-a28612d869e41af804920b62d6fe5f78a69cce73.tar.gz |
develop version is 0.15.1
-rw-r--r-- | compiler.nimble | 2 | ||||
-rw-r--r-- | lib/stdlib.nimble | 2 | ||||
-rw-r--r-- | lib/system.nim | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/compiler.nimble b/compiler.nimble index 247e2ecaf..66d2ee7c2 100644 --- a/compiler.nimble +++ b/compiler.nimble @@ -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" diff --git a/lib/stdlib.nimble b/lib/stdlib.nimble index 1071ee1d8..bd1b78efe 100644 --- a/lib/stdlib.nimble +++ b/lib/stdlib.nimble @@ -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" diff --git a/lib/system.nim b/lib/system.nim index 9de96c536..4c8af3d51 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -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 |