summary refs log tree commit diff stats
path: root/web
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-01-19 20:24:44 +0100
committerAraq <rumpf_a@web.de>2014-01-19 20:24:44 +0100
commit15859d94ecce40d08520c8b2eaefc015682546c3 (patch)
tree1078c0a6429e15a9864d54121546a9995e749a6c /web
parent73c6efdf66dd62370cb04f7ce75640743905edc5 (diff)
downloadNim-15859d94ecce40d08520c8b2eaefc015682546c3.tar.gz
compiler warns when you use GC'ed memory and '--gc:none'
Diffstat (limited to 'web')
-rw-r--r--web/news.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/news.txt b/web/news.txt
index ce5f80fd2..1ed447009 100644
--- a/web/news.txt
+++ b/web/news.txt
@@ -38,6 +38,8 @@ Changes affecting backwards compatibility
 - ``macros.dumpTree`` and ``macros.dumpLisp`` have been made ``immediate``,
   ``dumpTreeImm`` and ``dumpLispImm`` are now deprecated.
 - The ``nil`` statement has been deprecated, use an empty ``discard`` instead.
+- ``sockets.select`` now prunes sockets that are **not** ready from the list
+  of sockets given to it.
 
 
 Compiler Additions
@@ -54,6 +56,7 @@ Compiler Additions
 - The old evaluation engine has been replaced by a proper register based
   virtual machine. This fixes numerous bugs for ``nimrod i`` and for macro
   evaluation.
+- ``--gc:none`` produces warnings when code uses the GC.
 
 
 Language Additions