summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--compiler.nimble2
-rw-r--r--lib/stdlib.nimble2
-rw-r--r--lib/system.nim2
3 files changed, 3 insertions, 3 deletions
diff --git a/compiler.nimble b/compiler.nimble
index 66d2ee7c2..cb3eb34f6 100644
--- a/compiler.nimble
+++ b/compiler.nimble
@@ -1,6 +1,6 @@
 [Package]
 name = "compiler"
-version = "0.15.1"
+version = "0.15.2"
 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 bd1b78efe..5238d900b 100644
--- a/lib/stdlib.nimble
+++ b/lib/stdlib.nimble
@@ -1,6 +1,6 @@
 [Package]
 name          = "stdlib"
-version       = "0.15.1"
+version       = "0.15.2"
 author        = "Dominik Picheta"
 description   = "Nim's standard library."
 license       = "MIT"
diff --git a/lib/system.nim b/lib/system.nim
index 3e3f56e31..919b4694c 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 = 1
+  NimPatch*: int = 2
     ## is the patch number of Nim's version.
 
   NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch