summary refs log tree commit diff stats
path: root/web
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-06-15 01:22:12 +0200
committerAraq <rumpf_a@web.de>2015-06-15 01:22:12 +0200
commitd6f94091ed467e9208ff4f43f565eef3ac195982 (patch)
tree91c2682303f087354c08eaa97ad9b4cdd193ca1a /web
parent8d39669233880870a1c744e165a8510f5cc8d3c5 (diff)
downloadNim-d6f94091ed467e9208ff4f43f565eef3ac195982.tar.gz
fixes #2904
Diffstat (limited to 'web')
-rw-r--r--web/news.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt
index 49b49a9f1..bf21dff8d 100644
--- a/web/news.txt
+++ b/web/news.txt
@@ -3,7 +3,7 @@ News
 ====
 
 ..
-  2015-05-05 Version 0.11.2 released
+  2015-05-05 Version 0.11.4 released
   ==================================
 
   Changes affecting backwards compatibility
@@ -17,6 +17,11 @@ News
     their arguments just like ``echo`` does. Affected functions: ``log``,
     ``debug``, ``info``, ``warn``, ``error``, ``fatal``. Custom subtypes of
     ``Logger`` also need to be adjusted accordingly.
+  - Floating point numbers can now look like ``2d`` (float64)
+    and ``2f`` (float32) which means imports like ``import scene/2d/sprite``
+    do not work anymore. Instead quotes have to be
+    used: ``import "scene/2d/sprite"``. The former code never was valid Nim.
+
 
   Library additions
   -----------------