diff options
author | Araq <rumpf_a@web.de> | 2012-04-21 16:38:25 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-04-21 16:38:25 +0200 |
commit | 7e7c514dfcb6fcd83356ecadf5fec5526d7c332d (patch) | |
tree | ca0ad40a57c54eb69b3dd02e46f91606bc191ab5 /web/news.txt | |
parent | 7511a05b27e919c61703fea31f8d6d99cb2eae05 (diff) | |
download | Nim-7e7c514dfcb6fcd83356ecadf5fec5526d7c332d.tar.gz |
documentation improvements; GC_step improved
Diffstat (limited to 'web/news.txt')
-rwxr-xr-x | web/news.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt index a1816d474..090458d02 100755 --- a/web/news.txt +++ b/web/news.txt @@ -13,12 +13,15 @@ Bugfixes - Fixed a bug where the compiler would "optimize away" valid constant parts of a string concatenation. - Fixed a bug concerning implicit type conversions in ``case`` statements. +- Fixed a serious code generation bug that caused ``algorithm.sort`` to + produce segmentation faults. Library Additions ----------------- - Added the (already existing) module ``htmlgen`` to the documentation. +- Added the (already existing) module ``cookies`` to the documentation. - Added ``system.shallow`` that can be used to speed up string and sequence assignments. - Added ``system.eval`` that can execute an anonymous block of code at @@ -58,9 +61,10 @@ Changes affecting backwards compatibility ``PNimrodNode`` which unfortunately breaks the old macro system. - ``pegs.@`` has been renamed to ``pegs.!*`` and ``pegs.@@`` has been renamed to ``pegs.!*\`` as ``@`` operators now have different precedence. -- the type ``proc`` (without any params or return type) is now considered a +- The type ``proc`` (without any params or return type) is now considered a type class matching all proc types. Use ``proc ()`` to get the old meaning denoting a proc expecing no arguments and returing no value. +- Deprecated ``system.GC_setStrategy``. Compiler Additions |