diff options
author | rumpf_a@web.de <> | 2010-01-03 12:31:21 +0100 |
---|---|---|
committer | rumpf_a@web.de <> | 2010-01-03 12:31:21 +0100 |
commit | a58a2f3823c33104992dc0e4129fa53e66a18f44 (patch) | |
tree | af97f1c6634d7ef2d4468c70607c20731e6c1512 /rod/nversion.nim | |
parent | 2169fd63bdf9caf539ca7ca5b661ee703206500c (diff) | |
download | Nim-a58a2f3823c33104992dc0e4129fa53e66a18f44.tar.gz |
better subscript overloading
Diffstat (limited to 'rod/nversion.nim')
-rwxr-xr-x | rod/nversion.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rod/nversion.nim b/rod/nversion.nim index 8fbe87b07..2aa7babf7 100755 --- a/rod/nversion.nim +++ b/rod/nversion.nim @@ -1,7 +1,7 @@ # # # The Nimrod Compiler -# (c) Copyright 2008 Andreas Rumpf +# (c) Copyright 2010 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -15,6 +15,6 @@ const defaultAsmMarkerSymbol* = '!' VersionMajor* = 0 VersionMinor* = 8 - VersionPatch* = 6 + VersionPatch* = 7 VersionAsString* = $VersionMajor & "." & $VersionMinor & "." & $VersionPatch |