summary refs log tree commit diff stats
path: root/compiler/nversion.nim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/nversion.nim')
-rw-r--r--compiler/nversion.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/nversion.nim b/compiler/nversion.nim
index bd1f79ac6..c29880fe2 100644
--- a/compiler/nversion.nim
+++ b/compiler/nversion.nim
@@ -1,20 +1,20 @@
 #
 #
-#           The Nimrod Compiler
+#           The Nim Compiler
 #        (c) Copyright 2014 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
 #
 
-# This module contains Nimrod's version. It is the only place where it needs
+# This module contains Nim's version. It is the only place where it needs
 # to be changed.
 
 const 
   MaxSetElements* = 1 shl 16  # (2^16) to support unicode character sets?
   VersionMajor* = 0
-  VersionMinor* = 9
-  VersionPatch* = 6
+  VersionMinor* = 10
+  VersionPatch* = 0
   VersionAsString* = $VersionMajor & "." & $VersionMinor & "." & $VersionPatch
 
   RodFileVersion* = "1215"       # modify this if the rod-format changes!