diff options
Diffstat (limited to 'web/news.txt')
-rwxr-xr-x | web/news.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt index 6cd120e39..e4e9108e0 100755 --- a/web/news.txt +++ b/web/news.txt @@ -2,7 +2,7 @@ News ==== -2012-XX-XX Version 0.9.2 released +2013-XX-XX Version 0.9.2 released ================================= Version 0.9.2 has been released! Get it `here <download.html>`_. @@ -17,6 +17,7 @@ Library Additions - Added ``system.onRaise`` to support a condition system. - Added ``macros.quote`` for AST quasi-quoting. +- Added ``system.unsafeNew`` to support hacky variable length objects. Changes affecting backwards compatibility @@ -33,6 +34,7 @@ Compiler Additions - The compiler can now warn about shadowed local variables. However, this needs to be turned on explicitly via ``--warning[ShadowIdent]:on``. - The compiler now supports almost every pragma in a ``push`` pragma. +- Generic converters have been implemented. Language Additions @@ -51,6 +53,11 @@ Language Additions that ``nil`` is not allowed. However currently the compiler performs no advanced static checking for this; for now it's merely for documentation purposes. +- An ``export`` statement has been added to the language: It can be used for + symbol forwarding so client modules don't have to import a module's + dependencies explicitly. +- Overloading based on ASTs has been implemented. +- Generics are now supported for multi methods. 2012-09-23 Version 0.9.0 released |