diff options
-rw-r--r-- | compiler/nversion.nim | 2 | ||||
-rw-r--r-- | doc/estp.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nversion.nim b/compiler/nversion.nim index 39fcd6c18..bcb6a284e 100644 --- a/compiler/nversion.nim +++ b/compiler/nversion.nim @@ -15,7 +15,7 @@ const defaultAsmMarkerSymbol* = '!' VersionMajor* = 0 VersionMinor* = 9 - VersionPatch* = 1 + VersionPatch* = 2 VersionAsString* = $VersionMajor & "." & $VersionMinor & "." & $VersionPatch RodFileVersion* = "1212" # modify this if the rod-format changes! diff --git a/doc/estp.txt b/doc/estp.txt index 58b788aa0..353e4576f 100644 --- a/doc/estp.txt +++ b/doc/estp.txt @@ -36,7 +36,7 @@ the most memory and thus create the most GC pressure. It may also help to find memory leaks. To activate the memory profiler you need to do: * compile your program with the ``--profiler:off --stackTrace:on -d:memProfiler`` - command line options + command line options. Yes it's ``--profiler:off``. * import the ``nimprof`` module * run your program as usual. |