diff --git a/compiler/nversion.nim b/compiler/nversion.nim index 39fcd6c18b..bcb6a284ee 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 58b788aa00..353e4576fd 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.