summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2019-10-25 21:29:39 +0200
committerAndreas Rumpf <rumpf_a@web.de>2019-10-27 17:50:30 +0100
commit120829155aca179de375cad1afbeb4f2ce885efc (patch)
tree5fc86950cb3f10bdc49551b783073def1b7abdad
parent0631d2dcccbe1c76c47d0632167ae5e778c2e0cb (diff)
downloadNim-120829155aca179de375cad1afbeb4f2ce885efc.tar.gz
development version should be 1.1.0 so that version checking can work properly
-rw-r--r--lib/system.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim
index c076fb279..d8e5b602b 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -3579,10 +3579,10 @@ const
   NimMajor* {.intdefine.}: int = 1
     ## is the major number of Nim's version.
 
-  NimMinor* {.intdefine.}: int = 0
+  NimMinor* {.intdefine.}: int = 1
     ## is the minor number of Nim's version.
 
-  NimPatch* {.intdefine.}: int = 99
+  NimPatch* {.intdefine.}: int = 0
     ## is the patch number of Nim's version.
 
   NimVersion*: string = $NimMajor & "." & $NimMinor & "." & $NimPatch