version 0.9.2

This commit is contained in:
Araq
2013-05-20 17:14:15 +02:00
parent 4fd900f3d5
commit 3b50a99203
2 changed files with 2 additions and 2 deletions

View File

@@ -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!

View File

@@ -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.