summary refs log tree commit diff stats
path: root/web/news.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-04-21 03:22:53 +0200
committerAraq <rumpf_a@web.de>2012-04-21 03:22:53 +0200
commit7511a05b27e919c61703fea31f8d6d99cb2eae05 (patch)
tree083742a578b22765a324899b9644cedb87298a18 /web/news.txt
parent4aba7421f57d0f653ef928f012982957404416f9 (diff)
parenta05f0aa6b5d80bb10e1a854b60ed0af6e9f6f234 (diff)
downloadNim-7511a05b27e919c61703fea31f8d6d99cb2eae05.tar.gz
resolved conflict for news.txt
Diffstat (limited to 'web/news.txt')
-rwxr-xr-xweb/news.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/web/news.txt b/web/news.txt
index 1a1c5fe3b..a1816d474 100755
--- a/web/news.txt
+++ b/web/news.txt
@@ -35,6 +35,10 @@ Library Additions
 - Added a wrapper for ``libsvm``.
 - Added a wrapper for ``mongodb``.
 - Added ``terminal.isatty``.
+- Added overload for ``system.items`` that can be used to iterate over the
+  values of an enum.
+- Added ``system.TInteger`` and ``system.TNumber`` type classes matching
+  any of the corresponding type available in nimrod.
 - The GC supports (soft) realtime systems via ``GC_setMaxPause`` 
   and ``GC_step`` procs.
 
@@ -54,6 +58,9 @@ 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
+  type class matching all proc types. Use ``proc ()`` to get the old meaning
+  denoting a proc expecing no arguments and returing no value.
 
 
 Compiler Additions