diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-18 18:56:24 +0200 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-18 18:56:24 +0200 |
commit | 3c47e70d53231802c0e0d03ae64371a48655103c (patch) | |
tree | 6a112492e5ee2d21b972fb3b53a870980e8025fc | |
parent | c4ee18015e233058c463beac837d3cd6ada40c90 (diff) | |
download | Nim-3c47e70d53231802c0e0d03ae64371a48655103c.tar.gz |
Update v0.15 news.
-rw-r--r-- | web/news/version_0_15_released.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/web/news/version_0_15_released.rst b/web/news/version_0_15_released.rst index f0e488ee2..dea893ed1 100644 --- a/web/news/version_0_15_released.rst +++ b/web/news/version_0_15_released.rst @@ -12,6 +12,7 @@ Changes affecting backwards compatibility - The ``json`` module uses an ``OrderedTable`` rather than a ``Table`` for JSON objects. + - De-deprecated ``re.nim`` because we have too much code using it and it got the basic API right. @@ -62,6 +63,8 @@ that have tuple name: - In JavaScript ``system.alert`` is deprecated. Use ``dom.alert`` instead. +- ``AsyncHttpClient.headers`` type is now ``HttpHeaders``. + Library Additions ----------------- @@ -86,6 +89,11 @@ Library Additions over both files and directories, while ``walkFiles`` now only iterates over files and ``walkDirs`` only iterates over directories. +- Added synchronous ``HttpClient`` in the ``httpclient`` module. + +- Added a new macro called ``multisync`` allowing you to write procedures for +synchronous and asynchronous sockets with no duplication. + Compiler Additions ------------------ |