diff options
author | Araq <rumpf_a@web.de> | 2011-06-26 17:21:52 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-06-26 17:21:52 +0200 |
commit | 990dc2d7152f09c413d8fd96d66484d79aec97c7 (patch) | |
tree | a267c16996c61292c78019ab56d1116d811fd0dc /web/news.txt | |
parent | db0a4a9f86d167faccbd50f3f12f9de470e516b8 (diff) | |
download | Nim-990dc2d7152f09c413d8fd96d66484d79aec97c7.tar.gz |
code gen bugfixes; marshal.nim implemented
Diffstat (limited to 'web/news.txt')
-rwxr-xr-x | web/news.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/web/news.txt b/web/news.txt index d0ae451b5..a7f6a0b78 100755 --- a/web/news.txt +++ b/web/news.txt @@ -22,6 +22,8 @@ Bugfixes - Bugfix: The compiler does not emit very inaccurate floating point literals anymore. - Bugfix: Subclasses are taken into account for ``try except`` matching. +- Bugfix: Generated type information for tuples was sometimes wrong, causing + random crashes. - Lots of other bugfixes: Too many to list them all. @@ -61,7 +63,7 @@ Additions - Added ``re.findAll``, ``pegs.findAll``. - Added ``os.findExe``. - Added ``parseutils.parseUntil`` and ``parseutils.parseWhile``. -- Added ``strutils.align``, ``strutils.tokenize``, ``strutils.wordWrap``. +- Added ``strutils.align``, ``strutils.tokenize``, ``strutils.wordWrap``. - Pegs support a *captured search loop operator* ``{@}``. - Pegs support new built-ins: ``\letter``, ``\upper``, ``\lower``, ``\title``, ``\white``. @@ -93,12 +95,14 @@ Additions - Added a wrapper for ``sphinx``. - The compiler now supports array, sequence and string slicing. - Added ``system.newStringOfCap``. -- Added ``system.raiseHook``. +- Added ``system.raiseHook`` and ``system.outOfMemoryHook``. - Added ``system.writeFile``. - Added ``system.shallowCopy``. - ``system.echo`` is guaranteed to be thread-safe. - Case statement branches support constant sets for programming convenience. - +- Added ``prelude`` include file for scripting convenience. +- Added ``typeinfo`` core module for access to runtime type information. +- Added ``marshal`` module for JSON serialization. 2010-10-20 Version 0.8.10 released |