[Mono-list] Nemerle 0.3.1 released

Michal Moskal Michal Moskal <michal.moskal@gmail.com>
Mon, 2 May 2005 22:27:14 +0200


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 =3D> ... | Op.B =3D> ... }
  will now work as:
    foreach (op in ops) { match (op) { | Op.A =3D> ... | Op.B =3D> ... } }

--=20
   Michal Moskal,
   http://nemerle.org/~malekith/