The 0.3.1 version of Nemerle has hit our server. This is a bugfix release
to the 0.3.0 released 3 days ago.

The usual blurb about what is Nemerle can be found at:
  http://nemerle.org/

The changelog is in the blog:
  http://nemerle.org/blog/archive/2005/May-02.html
as well as at the end of this email.

Have fun!


0.3.1, May 2 2005
  This version is a quick fix for issues reported with the 0.3.0 release.

  Bugfixes:
    * The MSI package now have the proper version of cs2n.
    * The issues with loading external enums based on the long type
      are be fixed now.
    * Emacs mode should no longer hang on comment edition (#434).
    * There are quite a few language fixes in the documentation, thanks to
      Andy Burns and other nameless documentation updaters.

  There is a single nice feature that sneaked into this release, it is
  now possible to match inside the foreach loop directly (#436), that is:
    foreach (op in ops) { | Op.A => ... | Op.B => ... }
  will now work as:
    foreach (op in ops) { match (op) { | Op.A => ... | Op.B => ... } }

-- 
   Michal Moskal,
   http://nemerle.org/~malekith/
_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to