diff options
author | Araq <rumpf_a@web.de> | 2014-12-23 17:54:06 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-23 17:54:06 +0100 |
commit | 75b7917b3aba351c5b93c4a552f2081fb90a7668 (patch) | |
tree | 60588159d826c76de88fd9dd6b856c2253976966 /web/news.txt | |
parent | 2990a9224bcaaec2d79f0ee7b0cc233543f3d67d (diff) | |
download | Nim-75b7917b3aba351c5b93c4a552f2081fb90a7668.tar.gz |
website updated
Diffstat (limited to 'web/news.txt')
-rw-r--r-- | web/news.txt | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt index 361acfab5..c55620431 100644 --- a/web/news.txt +++ b/web/news.txt @@ -6,6 +6,15 @@ News 2014-10-21 Version 0.10.2 released ================================== + This release is the latest release before the release canditates for version + 1.0 roll in. Starting with version 0.10.2 the rename of the language to Nim + is officially complete. As the list of language changes is quite long it's + much more work to update the average Nim project than used to be the case. + However there is a new tool, `nimfix <nimfix.html>`_ to help you + in updating your code from Nimrod to Nim. This tool is unfortunately not + perfect but has been used to update thousands of lines of code successfully. + + Changes affecting backwards compatibility ----------------------------------------- @@ -17,7 +26,7 @@ News of ``discard``. - Large parts of the stdlib got rid of the T/P type prefixes. Instead most types now simply start with an uppercased letter. The - so called "partial case sensitivity" is now active allowing for code + so called "partial case sensitivity" rule is now active allowing for code like ``var foo: Foo`` in more contexts. - String case (or any non-ordinal case) statements without 'else' are deprecated. @@ -40,6 +49,8 @@ News own priority level and are right associative. This means that the ``=>`` and ``->`` operators from the `future <future.html>`_ module work better. + - Field names in tuples are now ignored for type comparisons. This allows + for greater interoperability between different modules. Language Additions |